public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Fix a couple C++ build issues
@ 2015-05-15 15:31 sergiodj+buildbot
  2015-05-15 15:31 ` Failures on Fedora-ppc64be-m64, branch master sergiodj+buildbot
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: sergiodj+buildbot @ 2015-05-15 15:31 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 13fa0398d7dd8d2b468acf0aba5610ce014709a6 ***

Author: Yuanhui Zhang <asmwarrior@gmail.com>
Branch: master
Commit: 13fa0398d7dd8d2b468acf0aba5610ce014709a6

Fix a couple C++ build issues
Building mingw GDB with --enable-build-with-cxx shows:

../../binutils-gdb/gdb/python/py-unwind.c:500:45: error: cannot convert 'cached_frame_info::reg_info*' to 'pyuw_prev_register(frame_info*, void**, int)::reg_info*' in initialization
   struct reg_info *reg_info = cached_frame->reg;
                                             ^
../../binutils-gdb/gdb/python/py-unwind.c:501:60: error: invalid use of incomplete type 'struct pyuw_prev_register(frame_info*, void**, int)::reg_info'
   struct reg_info *reg_info_end = reg_info + cached_frame->reg_count;
                                                            ^
../../binutils-gdb/gdb/python/py-unwind.c:500:10: error: forward declaration of 'struct pyuw_prev_register(frame_info*, void**, int)::reg_info'
   struct reg_info *reg_info = cached_frame->reg;
          ^
../../binutils-gdb/gdb/python/py-unwind.c:505:37: error: cannot increment a pointer to incomplete type 'pyuw_prev_register(frame_info*, void**, int)::reg_info'
   for (; reg_info < reg_info_end; ++reg_info)
                                     ^
../../binutils-gdb/gdb/python/py-unwind.c:507:29: error: invalid use of incomplete type 'struct pyuw_prev_register(frame_info*, void**, int)::reg_info'
       if (regnum == reg_info->number)
                             ^
../../binutils-gdb/gdb/python/py-unwind.c:500:10: error: forward declaration of 'struct pyuw_prev_register(frame_info*, void**, int)::reg_info'
   struct reg_info *reg_info = cached_frame->reg;
          ^
../../binutils-gdb/gdb/python/py-unwind.c:508:68: error: invalid use of incomplete type 'struct pyuw_prev_register(frame_info*, void**, int)::reg_info'
         return frame_unwind_got_bytes (this_frame, regnum, reg_info->data);
                                                                    ^
../../binutils-gdb/gdb/python/py-unwind.c:500:10: error: forward declaration of 'struct pyuw_prev_register(frame_info*, void**, int)::reg_info'
   struct reg_info *reg_info = cached_frame->reg;
          ^
../../binutils-gdb/gdb/python/py-unwind.c: In function 'int pyuw_sniffer(const frame_unwind*, frame_info*, void**)':
../../binutils-gdb/gdb/python/py-unwind.c:574:70: warning: invalid conversion from 'void*' to 'cached_frame_info*' [-fpermissive]
                             reg_count * sizeof (cached_frame->reg[0]));
                                                                      ^
../../binutils-gdb/gdb/python/py-unwind.c: In function 'void pyuw_on_new_gdbarch(gdbarch*)':
../../binutils-gdb/gdb/python/py-unwind.c:636:47: warning: invalid conversion from 'void*' to 'pyuw_gdbarch_data_type*' [-fpermissive]
       gdbarch_data (newarch, pyuw_gdbarch_data);
                                               ^
../../binutils-gdb/gdb/python/py-unwind.c:647:29: warning: invalid conversion from 'void*' to 'const frame_data*' [-fpermissive]
       unwinder->unwind_data = (void *) newarch;
                             ^
../../binutils-gdb/gdb/python/py-unwind.c: At global scope:
../../binutils-gdb/gdb/python/py-unwind.c:699:21: error: redefinition of 'PyTypeObject pending_frame_object_type'
 static PyTypeObject pending_frame_object_type =
                     ^
../../binutils-gdb/gdb/python/py-unwind.c:96:21: error: 'PyTypeObject pending_frame_object_type' previously declared here
 static PyTypeObject pending_frame_object_type
                     ^
../../binutils-gdb/gdb/python/py-unwind.c:749:21: error: redefinition of 'PyTypeObject unwind_info_object_type'
 static PyTypeObject unwind_info_object_type =
                     ^
../../binutils-gdb/gdb/python/py-unwind.c:99:21: error: 'PyTypeObject unwind_info_object_type' previously declared here
 static PyTypeObject unwind_info_object_type
                     ^

The first kind of error is caused by the embedded struct definition,
so move it out of the parent struct.

The second kind of error is caused by forward declaring a static
global variable, which works in C, but not in C++ (or C with
-fno-common).  Make it using extern instead, like done in other
similar cases.

gdb/ChangeLog:
2015-05-15  Yuanhui Zhang  <asmwarrior@gmail.com>

	* python/py-unwind.c (struct reg_info): Move out of ...
	(struct cached_frame_info): ... this scope.
	(pending_frame_object_type, unwind_info_object_type): Make extern.


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

* Failures on Fedora-ppc64be-m64, branch master
  2015-05-15 15:31 [binutils-gdb] Fix a couple C++ build issues sergiodj+buildbot
@ 2015-05-15 15:31 ` sergiodj+buildbot
  2015-05-15 15:46 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: sergiodj+buildbot @ 2015-05-15 15:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	13fa0398d7dd8d2b468acf0aba5610ce014709a6

Author(s) (in the same order as the commits):
	Yuanhui Zhang <asmwarrior@gmail.com>

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

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/gdbinit-history.exp: show commands <<2>>
PASS -> FAIL: gdb.base/gdbinit-history.exp: show history size
PASS -> FAIL: gdb.base/gdbinit-history.exp: show history size <<2>>
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/info_exc.exp: info exceptions
PASS -> FAIL: gdb.base/gdbinit-history.exp: show commands <<2>>
PASS -> FAIL: gdb.base/gdbinit-history.exp: show history size
PASS -> FAIL: gdb.base/gdbinit-history.exp: show history size <<2>>
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
new FAIL: gdb.mi/mi-nsmoribund.exp: thread state: all running except the breakpoint thread (timeout)
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
FAIL: gdb.base/auxv.exp: continue (timeout)
FAIL: gdb.base/auxv.exp: info auxv on native core dump (timeout)
FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
FAIL: gdb.base/auxv.exp: load core file for info auxv on native core dump (timeout)
FAIL: gdb.base/auxv.exp: matching auxv data from live and core
FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
============================




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

* Failures on Fedora-ppc64be-cc-with-index, branch master
  2015-05-15 15:31 [binutils-gdb] Fix a couple C++ build issues sergiodj+buildbot
  2015-05-15 15:31 ` Failures on Fedora-ppc64be-m64, branch master sergiodj+buildbot
@ 2015-05-15 15:46 ` sergiodj+buildbot
  2015-05-15 16:01 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: sergiodj+buildbot @ 2015-05-15 15:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-1

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

Commit(s) tested:
	13fa0398d7dd8d2b468acf0aba5610ce014709a6

Author(s) (in the same order as the commits):
	Yuanhui Zhang <asmwarrior@gmail.com>

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

*** Regressions found ***
============================
new FAIL: gdb.base/valgrind-db-attach.exp: bt
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/info_exc.exp: info exceptions
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch master
  2015-05-15 15:31 [binutils-gdb] Fix a couple C++ build issues sergiodj+buildbot
  2015-05-15 15:31 ` Failures on Fedora-ppc64be-m64, branch master sergiodj+buildbot
  2015-05-15 15:46 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
@ 2015-05-15 16:01 ` sergiodj+buildbot
  2015-05-15 16:09 ` Failures on Debian-i686-native-gdbserver, " sergiodj+buildbot
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: sergiodj+buildbot @ 2015-05-15 16:01 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/1012>

Commit(s) tested:
	13fa0398d7dd8d2b468acf0aba5610ce014709a6

Author(s) (in the same order as the commits):
	Yuanhui Zhang <asmwarrior@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=master&id=2ca586a2be1b7ff6956ff186ff2f32ebb86e0a93>

*** Regressions found ***
============================
new FAIL: gdb.base/foll-vfork.exp: exec: vfork and exec child follow, through step: step over vfork (GDB internal error)
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: continue to child exit
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: info inferiors shows vfork parent/child relation
new FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: step over vfork (GDB internal error)
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (sw)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/info_exc.exp: info exceptions
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/foll-vfork.exp: exec: vfork and exec child follow, through step: step over vfork (GDB internal error)
new FAIL: gdb.base/foll-vfork.exp: exec: vfork and exec child follow, to main bp: continue to bp
new FAIL: gdb.base/foll-vfork.exp: exec: vfork child follow, finish after tcatch vfork: finish
new FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, through step: step (GDB internal error)
new FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, to bp: continue to bp
new FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: continue to bp
PASS -> FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: info inferiors shows vfork parent/child relation
new FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: step over vfork (GDB internal error)
new FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, through step: step (GDB internal error)
new FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, to bp: continue to bp
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: continue to child exit
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: info inferiors shows vfork parent/child relation
new FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: step over vfork (GDB internal error)
PASS -> FAIL: gdb.base/gdbinit-history.exp: show commands <<2>>
PASS -> FAIL: gdb.base/gdbinit-history.exp: show history size
PASS -> FAIL: gdb.base/gdbinit-history.exp: show history size <<2>>
new FAIL: gdb.base/interrupt.exp: Send Control-C, second time
new FAIL: gdb.base/interrupt.exp: continue (the program exited)
new FAIL: gdb.base/interrupt.exp: echo data (timeout)
new FAIL: gdb.base/interrupt.exp: echo more data (timeout)
new FAIL: gdb.base/interrupt.exp: send end of file
new FAIL: gdb.base/interrupt.exp: send end of file (timeout)
new FAIL: gdb.base/interrupt.exp: signal SIGINT (the program is no longer running)
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (sw)
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0)
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: no thread-specific bp: continue: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: no thread-specific bp: next: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: no thread-specific bp: step: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: with thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: with thread-specific bp: continue: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: with thread-specific bp: next: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: with thread-specific bp: step: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: with thread-specific bp: step: step
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/func-ptrs.exp: stop in sentinel (timeout)
FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (timeout)
FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (got interactive prompt)
FAIL: gdb.reverse/until-precsave.exp: set reverse execution (got interactive prompt)
FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (timeout)
FAIL: gdb.reverse/until-precsave.exp: advance to marker2
FAIL: gdb.reverse/until-precsave.exp: finish to main
FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
FAIL: gdb.reverse/until-precsave.exp: set reverse execution
FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
FAIL: gdb.base/func-ptrs.exp: stop in sentinel
FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (got interactive prompt)
FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (timeout)
FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (timeout)
FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
============================




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

* Failures on Debian-i686-native-gdbserver, branch master
  2015-05-15 15:31 [binutils-gdb] Fix a couple C++ build issues sergiodj+buildbot
                   ` (2 preceding siblings ...)
  2015-05-15 16:01 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2015-05-15 16:09 ` sergiodj+buildbot
  2015-05-15 16:55 ` Failures on Debian-x86_64-native-gdbserver-m64, " sergiodj+buildbot
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: sergiodj+buildbot @ 2015-05-15 16:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-i686

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

Commit(s) tested:
	13fa0398d7dd8d2b468acf0aba5610ce014709a6

Author(s) (in the same order as the commits):
	Yuanhui Zhang <asmwarrior@gmail.com>

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

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 2
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/info_exc.exp: info exceptions
new FAIL: gdb.ada/out_of_line_in_inlined.exp: compilation foo_o224_021.adb
new FAIL: gdb.ada/rec_comp.exp: ptype r
new FAIL: gdb.ada/rec_comp.exp: whatis r.ia
new FAIL: gdb.arch/i386-biarch-core.exp: .text is readable
new FAIL: gdb.arch/i386-biarch-core.exp: core-file
PASS -> FAIL: gdb.arch/i386-sse-stack-align.exp: print g0 ()
PASS -> FAIL: gdb.arch/i386-sse-stack-align.exp: print g1 (1)
PASS -> FAIL: gdb.arch/i386-sse-stack-align.exp: print g2 (1, 2)
PASS -> FAIL: gdb.arch/i386-sse-stack-align.exp: print g3 (1, 2, 3)
PASS -> FAIL: gdb.arch/i386-sse-stack-align.exp: print g4 (1, 2, 3, 4)
PASS -> FAIL: gdb.base/gnu-ifunc.exp: step
PASS -> FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a function only for a selected ASM file.
PASS -> FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a global function only for a selected ASM file.
PASS -> FAIL: gdb.linespec/break-asm-file.exp: set a break-point at function in all instances for a selected ASM file.
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 2
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.ada/mi_var_array.exp: list vta's children
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=off: next over function call
FAIL: gdb.base/longjmp.exp: next over patt3
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Debian-x86_64-native-gdbserver-m64, branch master
  2015-05-15 15:31 [binutils-gdb] Fix a couple C++ build issues sergiodj+buildbot
                   ` (3 preceding siblings ...)
  2015-05-15 16:09 ` Failures on Debian-i686-native-gdbserver, " sergiodj+buildbot
@ 2015-05-15 16:55 ` sergiodj+buildbot
  2015-05-15 17:23 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: sergiodj+buildbot @ 2015-05-15 16:55 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/1001>

Commit(s) tested:
	13fa0398d7dd8d2b468acf0aba5610ce014709a6

Author(s) (in the same order as the commits):
	Yuanhui Zhang <asmwarrior@gmail.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=master&id=87ce785dd727b70a7e12fc06ad3e28af69e8d13e>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.dwarf2/gdb-index.exp: touch binary
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/interrupted-hand-call.exp: continue until exit
============================




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2015-05-15 15:31 [binutils-gdb] Fix a couple C++ build issues sergiodj+buildbot
                   ` (4 preceding siblings ...)
  2015-05-15 16:55 ` Failures on Debian-x86_64-native-gdbserver-m64, " sergiodj+buildbot
@ 2015-05-15 17:23 ` sergiodj+buildbot
  2015-05-15 17:38 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: sergiodj+buildbot @ 2015-05-15 17:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-2

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

Commit(s) tested:
	13fa0398d7dd8d2b468acf0aba5610ce014709a6

Author(s) (in the same order as the commits):
	Yuanhui Zhang <asmwarrior@gmail.com>

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

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/disp-step-syscall.exp: vfork: stepi vfork insn
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/info_exc.exp: info exceptions
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
PASS -> FAIL: gdb.base/disp-step-syscall.exp: vfork: stepi vfork insn
new FAIL: gdb.base/foll-vfork.exp: exec: vfork and exec child follow, to main bp: continue to bp
new FAIL: gdb.base/foll-vfork.exp: exec: vfork child follow, finish after tcatch vfork: finish
new FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, to bp: continue to bp
new FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: continue to bp
PASS -> FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
new FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, through step: step (GDB internal error)
new FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, to bp: continue to bp
new FAIL: gdb.base/gdbinit-history.exp: show commands <<2>>
new FAIL: gdb.base/gdbinit-history.exp: show history size
new FAIL: gdb.base/gdbinit-history.exp: show history size <<2>>
new FAIL: gdb.base/interrupt.exp: Send Control-C, second time
new FAIL: gdb.base/interrupt.exp: continue (the program exited)
new FAIL: gdb.base/interrupt.exp: echo data (timeout)
new FAIL: gdb.base/interrupt.exp: echo more data (timeout)
new FAIL: gdb.base/interrupt.exp: send end of file
new FAIL: gdb.base/interrupt.exp: send end of file (timeout)
new FAIL: gdb.base/interrupt.exp: signal SIGINT (the program is no longer running)
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0)
new FAIL: gdb.python/py-unwind.exp: Backtrace restored by unwinder (pattern 1)
new FAIL: gdb.python/py-unwind.exp: continue to breakpoint: break backtrace-broken
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.ada/arraydim.exp: print m'first
FAIL: gdb.ada/arraydim.exp: print m'first(1)
FAIL: gdb.ada/arraydim.exp: print m'first(2)
FAIL: gdb.ada/arraydim.exp: print m'first(3)
FAIL: gdb.ada/arraydim.exp: print m'last
FAIL: gdb.ada/arraydim.exp: print m'last(1)
FAIL: gdb.ada/arraydim.exp: print m'last(2)
FAIL: gdb.ada/arraydim.exp: print m'last(3)
FAIL: gdb.ada/arraydim.exp: print m'length
FAIL: gdb.ada/arraydim.exp: print m'length(1)
FAIL: gdb.ada/arraydim.exp: print m'length(2)
FAIL: gdb.ada/arraydim.exp: print m'length(3)
FAIL: gdb.ada/arrayidx.exp: print e_one_two_three
FAIL: gdb.ada/arrayidx.exp: print e_one_two_three, indexes off
FAIL: gdb.ada/arrayidx.exp: print empty
FAIL: gdb.ada/arrayidx.exp: print empty, indexes off
FAIL: gdb.ada/arrayidx.exp: print few_reps
FAIL: gdb.ada/arrayidx.exp: print few_reps, indexes off
FAIL: gdb.ada/arrayidx.exp: print many_reps
FAIL: gdb.ada/arrayidx.exp: print many_reps, indexes off
FAIL: gdb.ada/arrayidx.exp: print one_two_three
FAIL: gdb.ada/arrayidx.exp: print one_two_three, indexes off
FAIL: gdb.ada/arrayidx.exp: print p_one_two_three
FAIL: gdb.ada/arrayidx.exp: print p_one_two_three, indexes off
FAIL: gdb.ada/arrayidx.exp: print r_two_three
FAIL: gdb.ada/arrayidx.exp: print r_two_three, indexes off
FAIL: gdb.ada/arrayidx.exp: print u_one_two_three
FAIL: gdb.ada/arrayidx.exp: print u_one_two_three, indexes off
FAIL: gdb.ada/arrayparam.exp: print first after function call
FAIL: gdb.ada/arrayparam.exp: print last after function call
FAIL: gdb.ada/arrayparam.exp: print length after function call
FAIL: gdb.ada/bp_enum_homonym.exp: run to pck.archive breakpoint
FAIL: gdb.ada/bp_range_type.exp: print small_value
FAIL: gdb.ada/bp_range_type.exp: run to breakpoint
FAIL: gdb.ada/char_param.exp: call next
FAIL: gdb.ada/char_param.exp: print procedure_result after calling next
FAIL: gdb.ada/char_param.exp: print procedure_result after calling same
FAIL: gdb.ada/complete.exp: complete p external_ident
FAIL: gdb.ada/complete.exp: complete p some
FAIL: gdb.ada/complete.exp: interactive complete 'print some' (timeout)
FAIL: gdb.ada/cond_lang.exp: continue (the program is no longer running)
FAIL: gdb.ada/dyn_arrayidx.exp: ptype array_type
FAIL: gdb.ada/enum_idx_packed.exp: print full'first
FAIL: gdb.ada/expr_delims.exp: Check that watchpoint is set correctly.
FAIL: gdb.ada/expr_delims.exp: Print variable 'thread'
FAIL: gdb.ada/expr_delims.exp: Set conditional watchpoint.
FAIL: gdb.ada/expr_delims.exp: Set plain watchpoint on variable 'thread'
FAIL: gdb.ada/expr_delims.exp: continue (the program is no longer running)
FAIL: gdb.ada/exprs.exp: long_float'max
FAIL: gdb.ada/exprs.exp: long_float'min
FAIL: gdb.ada/fixed_cmp.exp: print My_Var > 10
FAIL: gdb.ada/fixed_cmp.exp: print My_Var > 20
FAIL: gdb.ada/fixed_cmp.exp: print My_Var > 20.0
FAIL: gdb.ada/fixed_points.exp: p on a new fixed point type
FAIL: gdb.ada/fixed_points.exp: p on a subtype fixed point type
FAIL: gdb.ada/fixed_points.exp: print Overprecise_Object
FAIL: gdb.ada/fixed_points.exp: ptype Overprecise_Object
FAIL: gdb.ada/float_param.exp: call set_double(1, 3.0)
FAIL: gdb.ada/float_param.exp: call set_long_double(1, global_small_struct, 4.0)
FAIL: gdb.ada/float_param.exp: print global_double
FAIL: gdb.ada/float_param.exp: print global_float
FAIL: gdb.ada/float_param.exp: print global_long_double
FAIL: gdb.ada/formatted_ref.exp: print s.x = 13
FAIL: gdb.ada/formatted_ref.exp: print/x s'access
FAIL: gdb.ada/homonym.exp: continue until BREAK_2 (the program is no longer running)
FAIL: gdb.ada/homonym.exp: print lcl at BREAK_1
FAIL: gdb.ada/homonym.exp: print lcl at BREAK_2
FAIL: gdb.ada/homonym.exp: ptype int_type at BREAK_1
FAIL: gdb.ada/homonym.exp: ptype lcl at BREAK_1
FAIL: gdb.ada/homonym.exp: ptype lcl at BREAK_2
FAIL: gdb.ada/homonym.exp: ptype local_type at BREAK_1
FAIL: gdb.ada/homonym.exp: ptype local_type at BREAK_2
FAIL: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_1
FAIL: gdb.ada/homonym.exp: ptype local_type_subtype at BREAK_2
FAIL: gdb.ada/interface.exp: print s
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/lang_switch.exp: backtrace
FAIL: gdb.ada/lang_switch.exp: backtrace with lang set to C
FAIL: gdb.ada/mi_dyn_arr.exp: Create bt varobj
FAIL: gdb.ada/mi_dyn_arr.exp: run to foo.adb:22 (exec-continue) (MI error)
FAIL: gdb.ada/mi_dyn_arr.exp: wait for stop (stop at start of main Ada procedure)
FAIL: gdb.ada/mi_exc_info.exp: -info-ada-exceptions const.aint
FAIL: gdb.ada/mi_exc_info.exp: -info-ada-exceptions task
FAIL: gdb.ada/mi_interface.exp: Create ggg1 varobj
FAIL: gdb.ada/mi_interface.exp: list ggg1's children
FAIL: gdb.ada/mi_interface.exp: run to foo.adb:22 (exec-continue) (MI error)
FAIL: gdb.ada/mi_interface.exp: wait for stop (stop at start of main Ada procedure)
FAIL: gdb.ada/mi_task_info.exp: -ada-task-info 3
FAIL: gdb.ada/null_array.exp: print my_matrix
FAIL: gdb.ada/null_array.exp: ptype my_table
FAIL: gdb.ada/operator_bp.exp: continue to "&" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "*" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "**" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "+" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "-" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "/" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "<" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "<=" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "=" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ">" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ">=" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "abs" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "and" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "mod" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "not" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "or" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "rem" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to "xor" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."&" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."*" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."**" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."+" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."-" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."/" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."<" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."<=" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."=" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops.">" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops.">=" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."abs" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."and" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."mod" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."not" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."or" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."rem" (the program is no longer running)
FAIL: gdb.ada/operator_bp.exp: continue to ops."xor" (the program is no longer running)
FAIL: gdb.ada/packed_array.exp: print &var
FAIL: gdb.ada/packed_array.exp: print u_var
FAIL: gdb.ada/packed_array.exp: ptype &var
FAIL: gdb.ada/packed_tagged.exp: ptype x
FAIL: gdb.ada/pkd_arr_elem.exp: print test.str
FAIL: gdb.ada/pkd_arr_elem.exp: print test.str(1)
FAIL: gdb.ada/pp-rec-component.exp: print /r before
FAIL: gdb.ada/pp-rec-component.exp: print before
FAIL: gdb.ada/print_chars.exp: print WC
FAIL: gdb.ada/print_chars.exp: print WWC
FAIL: gdb.ada/py_range.exp: python print(int(gdb.parse_and_eval('ir')))
FAIL: gdb.ada/py_range.exp: python print(int(gdb.parse_and_eval('si')))
FAIL: gdb.ada/rdv_wait.exp: task 2
FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small (the program is no longer running)
FAIL: gdb.ada/tagged.exp: print obj
FAIL: gdb.ada/tagged.exp: print segm
FAIL: gdb.ada/tagged.exp: ptype obj
FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
FAIL: gdb.ada/task_bp.exp: run to dummy_task - from full symtab
FAIL: gdb.ada/task_bp.exp: run to dummy_task - from psymtab
FAIL: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from full symtab
FAIL: gdb.ada/task_bp.exp: run to pck.adb:dummy_task - from psymtab
FAIL: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from full symtab
FAIL: gdb.ada/task_bp.exp: run to pck.adb:pck.dummy_task - from psymtab
FAIL: gdb.ada/task_bp.exp: run to pck.dummy_task - from full symtab
FAIL: gdb.ada/task_bp.exp: run to pck.dummy_task - from psymtab
FAIL: gdb.ada/tasks.exp: break break_me task 1
FAIL: gdb.ada/tasks.exp: break break_me task 3
FAIL: gdb.ada/tick_length_array_enum_idx.exp: print cold'length
FAIL: gdb.ada/tick_length_array_enum_idx.exp: print prim'length
FAIL: gdb.ada/tick_length_array_enum_idx.exp: print vars'length
FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype cold'length
FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype full'length
FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype prim'length
FAIL: gdb.ada/tick_length_array_enum_idx.exp: ptype vars'length
FAIL: gdb.ada/type_coercion.exp: p q
FAIL: gdb.ada/type_coercion.exp: print {Integer} $addr
FAIL: gdb.ada/type_coercion.exp: save q'address in convenience variable
FAIL: gdb.ada/type_coercion.exp: set {Integer} $addr := 19
FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: continue to STOP2 (the program is no longer running)
FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_Object.Ptr when null
FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object.Ptr when no longer null
FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object.Ptr when no longer null <<2>>
FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object.Ptr when null
FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_object after setting Ptr
FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_object.ptr.all
FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_p_object after setting Ptr
FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print my_p_object.ptr.all
FAIL: gdb.ada/var_arr_attrs.exp: print my_object.data'last
FAIL: gdb.ada/var_arr_attrs.exp: print my_object.data'length
FAIL: gdb.ada/var_arr_attrs.exp: print my_small_object.data'first
FAIL: gdb.ada/var_arr_attrs.exp: print my_small_object.data'last
FAIL: gdb.ada/var_arr_attrs.exp: print my_small_object.data'length
FAIL: gdb.ada/variant_record_packed_array.exp: print address
FAIL: gdb.ada/variant_record_packed_array.exp: print adress content
FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint (the program is no longer running)
FAIL: gdb.ada/unc_arr_ptr_in_var_rec.exp: print My_P_Object with null Ptr
FAIL: gdb.ada/mi_var_array.exp: Create bt varobj
FAIL: gdb.ada/mi_var_array.exp: list vta's children
FAIL: gdb.ada/mi_var_array.exp: run to bar.adb:28 (exec-continue) (MI error)
FAIL: gdb.ada/mi_var_array.exp: wait for stop (stop at start of main Ada procedure)
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=off: next over function call
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 5
FAIL: gdb.threads/hand-call-in-threads.exp: hand call, thread 5
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach (got interactive prompt)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/print-threads.exp: all threads ran once (fast) (total 4 threads ran)
FAIL: gdb.threads/print-threads.exp: all threads ran once (slow with kill breakpoint) (total 4 threads ran)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 2
FAIL: gdb.threads/hand-call-in-threads.exp: hand call, thread 2
FAIL: gdb.threads/print-threads.exp: all threads ran once
FAIL: gdb.threads/print-threads.exp: all threads ran once (slow) (total 4 threads ran)
FAIL: gdb.threads/watchthreads2.exp: all threads started
FAIL: gdb.threads/watchthreads2.exp: run to thread_started
============================




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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2015-05-15 15:31 [binutils-gdb] Fix a couple C++ build issues sergiodj+buildbot
                   ` (5 preceding siblings ...)
  2015-05-15 17:23 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2015-05-15 17:38 ` sergiodj+buildbot
  2015-05-15 17:49 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
  2015-05-15 18:15 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
  8 siblings, 0 replies; 10+ messages in thread
From: sergiodj+buildbot @ 2015-05-15 17:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

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

Commit(s) tested:
	13fa0398d7dd8d2b468acf0aba5610ce014709a6

Author(s) (in the same order as the commits):
	Yuanhui Zhang <asmwarrior@gmail.com>

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

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (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: multithreaded: watchpoint B after the second fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/info_exc.exp: info exceptions
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
new FAIL: gdb.base/gdbinit-history.exp: show commands <<2>>
new FAIL: gdb.base/gdbinit-history.exp: show history size
new FAIL: gdb.base/gdbinit-history.exp: show history size <<2>>
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: run until end part two
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (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: multithreaded: watchpoint B after the second fork (GDB internal error)
============================


*** Failures that are being ignored ***
============================
============================




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2015-05-15 15:31 [binutils-gdb] Fix a couple C++ build issues sergiodj+buildbot
                   ` (6 preceding siblings ...)
  2015-05-15 17:38 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
@ 2015-05-15 17:49 ` sergiodj+buildbot
  2015-05-15 18:15 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
  8 siblings, 0 replies; 10+ messages in thread
From: sergiodj+buildbot @ 2015-05-15 17:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-2

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

Commit(s) tested:
	13fa0398d7dd8d2b468acf0aba5610ce014709a6

Author(s) (in the same order as the commits):
	Yuanhui Zhang <asmwarrior@gmail.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=master&id=497f51c608b51c1a71b88f09116e59ff922886a5>

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: info inferiors shows vfork parent/child relation
new FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: step over vfork (GDB internal error)
new FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, through step: step (GDB internal error)
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/info_exc.exp: info exceptions
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/foll-vfork.exp: exec: vfork and exec child follow, to main bp: continue to bp
new FAIL: gdb.base/foll-vfork.exp: exec: vfork child follow, finish after tcatch vfork: finish
new FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, through step: step (GDB internal error)
new FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, to bp: continue to bp
new FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: continue to bp
PASS -> FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: info inferiors shows vfork parent/child relation
new FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: step over vfork (GDB internal error)
new FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, through step: step (GDB internal error)
new FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, to bp: continue to bp
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: continue to child exit
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: info inferiors shows vfork parent/child relation
new FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: step over vfork (GDB internal error)
new FAIL: gdb.base/gdbinit-history.exp: show commands <<2>>
new FAIL: gdb.base/gdbinit-history.exp: show history size
new FAIL: gdb.base/gdbinit-history.exp: show history size <<2>>
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0)
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: run until end part two
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** 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)
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=step: next over function call
============================




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

* Failures on Fedora-ppc64le-native-extended-gdbserver-m64, branch master
  2015-05-15 15:31 [binutils-gdb] Fix a couple C++ build issues sergiodj+buildbot
                   ` (7 preceding siblings ...)
  2015-05-15 17:49 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2015-05-15 18:15 ` sergiodj+buildbot
  8 siblings, 0 replies; 10+ messages in thread
From: sergiodj+buildbot @ 2015-05-15 18:15 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/934>

Commit(s) tested:
	13fa0398d7dd8d2b468acf0aba5610ce014709a6

Author(s) (in the same order as the commits):
	Yuanhui Zhang <asmwarrior@gmail.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=master&id=a718376ff66989014acb2add144547ccd3e8e5da>

*** Regressions found ***
============================
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (got interactive prompt)
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 line number
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/checkpoint.exp: Diff input and output one (timeout)
new FAIL: gdb.base/checkpoint.exp: Diff input and output two (timeout)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five (timeout)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four (timeout)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three (timeout)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two (timeout)
new FAIL: gdb.base/checkpoint.exp: break2 1 one (timeout)
new FAIL: gdb.base/checkpoint.exp: break2 10 one (timeout)
new FAIL: gdb.base/checkpoint.exp: break2 2 one (timeout)
new FAIL: gdb.base/checkpoint.exp: break2 3 one (timeout)
new FAIL: gdb.base/checkpoint.exp: break2 4 one (timeout)
new FAIL: gdb.base/checkpoint.exp: break2 5 one (timeout)
new FAIL: gdb.base/checkpoint.exp: break2 6 one (timeout)
new FAIL: gdb.base/checkpoint.exp: break2 7 one (timeout)
new FAIL: gdb.base/checkpoint.exp: break2 8 one (timeout)
new FAIL: gdb.base/checkpoint.exp: break2 9 one (timeout)
new FAIL: gdb.base/checkpoint.exp: break2 one (timeout)
new FAIL: gdb.base/checkpoint.exp: break3 one (timeout)
new FAIL: gdb.base/checkpoint.exp: break4 one (timeout)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one (timeout)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one (timeout)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one (timeout)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one (timeout)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one (timeout)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one (timeout)
new FAIL: gdb.base/checkpoint.exp: continue (timeout)
new FAIL: gdb.base/checkpoint.exp: continue (timeout) <<2>>
new FAIL: gdb.base/checkpoint.exp: continue (timeout) <<3>>
new FAIL: gdb.base/checkpoint.exp: continue (timeout) <<4>>
new FAIL: gdb.base/checkpoint.exp: continue (timeout) <<5>>
new FAIL: gdb.base/checkpoint.exp: continue (timeout) <<6>>
new FAIL: gdb.base/checkpoint.exp: continue (timeout) <<7>>
new FAIL: gdb.base/checkpoint.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.base/checkpoint.exp: delete all breakpoints in delete_breakpoints (timeout) <<2>>
new FAIL: gdb.base/checkpoint.exp: delete copy1 (timeout)
new FAIL: gdb.base/checkpoint.exp: info checkpoints two (timeout)
new FAIL: gdb.base/checkpoint.exp: kill all one (timeout)
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 0 (timeout)
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 1 (timeout)
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 10 (timeout)
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 2 (timeout)
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 3 (timeout)
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 4 (timeout)
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 5 (timeout)
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 6 (timeout)
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 7 (timeout)
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 8 (timeout)
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 9 (timeout)
new FAIL: gdb.base/checkpoint.exp: outfile still open 1 (timeout)
new FAIL: gdb.base/checkpoint.exp: outfile still open 10 (timeout)
new FAIL: gdb.base/checkpoint.exp: outfile still open 2 (timeout)
new FAIL: gdb.base/checkpoint.exp: outfile still open 3 (timeout)
new FAIL: gdb.base/checkpoint.exp: outfile still open 4 (timeout)
new FAIL: gdb.base/checkpoint.exp: outfile still open 5 (timeout)
new FAIL: gdb.base/checkpoint.exp: outfile still open 6 (timeout)
new FAIL: gdb.base/checkpoint.exp: outfile still open 7 (timeout)
new FAIL: gdb.base/checkpoint.exp: outfile still open 8 (timeout)
new FAIL: gdb.base/checkpoint.exp: outfile still open 9 (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 0 one (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 0 one (timeout) <<2>>
new FAIL: gdb.base/checkpoint.exp: restart 1 one (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 1 three (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 1 two (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 10 one (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 10 three (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 2 one (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 2 three (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 2 two (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 3 one (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 3 three (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 3 two (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 4 one (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 4 three (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 4 two (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 5 one (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 5 three (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 5 two (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 6 one (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 6 three (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 6 two (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 7 one (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 7 three (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 7 two (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 8 one (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 8 three (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 9 one (timeout)
new FAIL: gdb.base/checkpoint.exp: restart 9 three (timeout)
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 49 (timeout)
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 57 (timeout)
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 59 (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 1 one (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 1 two (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 10 one (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 2 one (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 2 two (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 3 one (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 3 two (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 4 one (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 4 two (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 5 one (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 5 two (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 6 one (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 6 two (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 7 one (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 7 two (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 8 one (timeout)
new FAIL: gdb.base/checkpoint.exp: step in 9 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify i 1 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify i 10 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify i 2 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify i 3 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify i 4 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify i 5 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify i 6 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify i 7 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify i 8 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify i 9 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 1 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 1 two (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 10 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 2 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 2 two (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 3 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 3 two (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 4 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 4 two (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 5 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two (timeout) <<2>>
new FAIL: gdb.base/checkpoint.exp: verify lines 6 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 7 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 7 two (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 8 one (timeout)
new FAIL: gdb.base/checkpoint.exp: verify lines 9 one (timeout)
new FAIL: gdb.base/foll-vfork.exp: exec: vfork and exec child follow, through step: step over vfork (GDB internal error)
new FAIL: gdb.base/foll-vfork.exp: exec: vfork and exec child follow, to main bp: continue to bp
new FAIL: gdb.base/foll-vfork.exp: exec: vfork child follow, finish after tcatch vfork: finish
new FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, through step: step (GDB internal error)
new FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, to bp: continue to bp
new FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: continue to bp
PASS -> FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: info inferiors shows vfork parent/child relation
new FAIL: gdb.base/foll-vfork.exp: exec: vfork relations in info inferiors: step over vfork (GDB internal error)
new FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, to bp: continue to bp
new FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: continue to child exit
new FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: info inferiors shows vfork parent/child relation
new FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: step over vfork (GDB internal error)
new FAIL: gdb.base/interrupt.exp: child died when we called func1, skipped rest of tests
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0)
new FAIL: gdb.gdb/python-selftest.exp: run until breakpoint at captured_command_loop (GDB internal error)
PASS -> FAIL: gdb.gdb/python-selftest.exp: set variable gdb_python_initialized = 0
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.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
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
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event (timeout)
FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found (the program exited)
============================




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

end of thread, other threads:[~2015-05-15 18:15 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-15 15:31 [binutils-gdb] Fix a couple C++ build issues sergiodj+buildbot
2015-05-15 15:31 ` Failures on Fedora-ppc64be-m64, branch master sergiodj+buildbot
2015-05-15 15:46 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
2015-05-15 16:01 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
2015-05-15 16:09 ` Failures on Debian-i686-native-gdbserver, " sergiodj+buildbot
2015-05-15 16:55 ` Failures on Debian-x86_64-native-gdbserver-m64, " sergiodj+buildbot
2015-05-15 17:23 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
2015-05-15 17:38 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
2015-05-15 17:49 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2015-05-15 18:15 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).