public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Test results for commit 03e98035a2a5d928ceb36ddd7b43369fbf72a008 on branch master
@ 2015-02-17 19:34 sergiodj
  2015-02-17 19:37 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj
                   ` (11 more replies)
  0 siblings, 12 replies; 42+ messages in thread
From: sergiodj @ 2015-02-17 19:34 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 03e98035a2a5d928ceb36ddd7b43369fbf72a008 ***

Author: Jose E. Marchesi <jose.marchesi@oracle.com>
Branch: master
Commit: 03e98035a2a5d928ceb36ddd7b43369fbf72a008

Move `compute_probe_arg' and `compile_probe_arg' to probe.c
This patch moves the `compute_probe_arg' and `compile_probe_arg' functions
from stap-probe.c to probe.c.  The rationale is that it is reasonable to
assume that all backends will provide the `$_probe_argN' convenience
variables, and that the user must be placed on the PC of the probe when
requesting that information.  The value and type of the argument can still be
determined by the probe backend via the `pops->evaluate_probe_argument' and
`pops->compile_to_ax' handlers.

Note that a test in gdb.base/stap-probe.exp had to be adjusted because the "No
SystemTap probe at PC" messages are now "No probe at PC".

gdb/ChangeLog:

2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>

	* probe.c (compute_probe_arg): Moved from stap-probe.c
	(compile_probe_arg): Likewise.
	(probe_funcs): Likewise.
	* stap-probe.c (compute_probe_arg): Moved to probe.c.
	(compile_probe_arg): Likewise.
	(probe_funcs): Likewise.

gdb/testsuite/ChangeLog:

2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>

	* gdb.base/stap-probe.exp (stap_test): Remove "SystemTap" from
	expected message when trying to access $_probe_* convenience
	variables while not on a probe.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit f6a88844c36e2c03806563c9703b92af6ba0b345 on branch master
@ 2015-02-18 14:06 sergiodj
  2015-02-19  0:31 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-18 14:06 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT f6a88844c36e2c03806563c9703b92af6ba0b345 ***

Author: Jose E. Marchesi <jose.marchesi@oracle.com>
Branch: master
Commit: f6a88844c36e2c03806563c9703b92af6ba0b345

Factorize target program transformations in the GDB_AC_TRANSFORM macro.
This patch introduces a new M4 macro GDB_AC_TRANSFORM to avoid repeating
the common idiom which is the transformation of target program names,
i.e. from gdb to sparc64-linux-gnu-gdb.  It also makes gdb/configure.ac
and gdb/testsuite/configure.ac to use the new macro.

gdb/ChangeLog:

2015-02-18  Jose E. Marchesi  <jose.marchesi@oracle.com>

	* configure: Regenerated.
	* configure.ac: Use GDB_AC_TRANSFORM.
	* Makefile.in (aclocal_m4_deps): Added transform.m4.
	* acinclude.m4: sinclude transform.m4.
	* transform.m4: New file.
	(GDB_AC_TRANSFORM): New macro.

gdb/testsuite/ChangeLog:

2015-02-18  Jose E. Marchesi  <jose.marchesi@oracle.com>

	* configure: Regenerated.
	* configure.ac: Use GDB_AC_TRANSFORM.
	* aclocal.m4: sinclude ../transform.m4.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit b05e3b0dd2a257f7f0c1e23ff4c36f369438ea81 on branch master
@ 2015-02-18  1:45 sergiodj
  2015-02-19  0:13 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-18  1:45 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT b05e3b0dd2a257f7f0c1e23ff4c36f369438ea81 ***

Author: Jose E. Marchesi <jose.marchesi@oracle.com>
Branch: master
Commit: b05e3b0dd2a257f7f0c1e23ff4c36f369438ea81

Announce the DTrace USDT probes support in NEWS.
This patch simply adds a small entry to `Changes since GDB 7.8' announcing the
support for dtrace probes.

gdb/ChangeLog:

2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>

	* NEWS: Announce the support for DTrace SDT probes.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit 3133f8c11fd2e18b9f5ffd35bb26410dc61a69c5 on branch master
@ 2015-02-18  0:57 sergiodj
  2015-02-18 22:56 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-18  0:57 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 3133f8c11fd2e18b9f5ffd35bb26410dc61a69c5 ***

Author: Jose E. Marchesi <jose.marchesi@oracle.com>
Branch: master
Commit: 3133f8c11fd2e18b9f5ffd35bb26410dc61a69c5

Documentation for DTrace USDT probes.
This patch modifies the `Static Probe Points' section on the GDB
manual in order to cover the support for DTrace USDT probes, in
addition to SystemTap SDT probes.

gdb/doc/ChangeLog:

2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>

	* gdb.texinfo (Static Probe Points): Add cindex `static probe
	point, DTrace'.
	(Static Probe Points): Modified to cover DTrace probes in addition
	to SystemTap probes.  Also modified to cover the `enable probe'
	and `disable probe' commands.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit c3e3045e5ce820055e2823e8c5b03b0e99a4b514 on branch master
@ 2015-02-17 23:08 sergiodj
  2015-02-18 13:18 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-17 23:08 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT c3e3045e5ce820055e2823e8c5b03b0e99a4b514 ***

Author: Jose E. Marchesi <jose.marchesi@oracle.com>
Branch: master
Commit: c3e3045e5ce820055e2823e8c5b03b0e99a4b514

Support for DTrace USDT probes in x86_64 targets.
This patch adds the target-specific code in order to support the
calculation of DTrace probes arguments in x86_64 targets, and also the
enabling and disabling of probes.  This is done by implementing the
`dtrace_*' gdbarch handlers.

gdb/ChangeLog:

2015-02-17  Jose E. Marchesi  <jose.marchesi@oracle.com>

	* amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h".
	(amd64_dtrace_parse_probe_argument): New function.
	(amd64_dtrace_probe_is_enabled): Likewise.
	(amd64_dtrace_enable_probe): Likewise.
	(amd64_dtrace_disable_probe): Likewise.
	(amd64_linux_init_abi): Register the
	`gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe',
	`gdbarch_dtrace_disable_probe' and
	`gdbarch_dtrace_probe_is_enabled' hooks.
	(amd64_dtrace_disabled_probe_sequence_1): New constant.
	(amd64_dtrace_disabled_probe_sequence_2): Likewise.
	(amd64_dtrace_enable_probe_sequence): Likewise.
	(amd64_dtrace_disable_probe_sequence): Likewise.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit 9f2e07213aa91f1882112df3e0d227638b7a085b on branch master
@ 2015-02-17 10:37 sergiodj
  2015-02-17 11:07 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-17 10:37 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 9f2e07213aa91f1882112df3e0d227638b7a085b ***

Author: Maxim Ostapenko <m.ostapenko@partner.samsung.com>
Branch: master
Commit: 9f2e07213aa91f1882112df3e0d227638b7a085b

Fix GDB build fail on Aarch64 when -fno-common is enabled
Current trunk GDB (and gdb-7.8.1 too) fails to build on Aarch64 when
-fno-common is enabled.  It fails during link stage due to multiple
definition of `tdesc_aarch64':

...
[  199s] aarch64-linux-nat.o: In function `initialize_tdesc_aarch64':
[  199s]
/home/abuild/rpmbuild/BUILD/gdb-7.8.1/gdb/features/aarch64.c:11:
multiple definition of `tdesc_aarch64'
[  199s]
aarch64-tdep.o:/home/abuild/rpmbuild/BUILD/gdb-7.8.1/gdb/objfiles.h:540:
first defined here
[  199s] aarch64-linux-nat.o: In function `initialize_tdesc_aarch64':
[  199s]
/home/abuild/rpmbuild/BUILD/gdb-7.8.1/gdb/features/aarch64.c:11:
multiple definition of `tdesc_aarch64'
[  199s]
aarch64-tdep.o:/home/abuild/rpmbuild/BUILD/gdb-7.8.1/gdb/objfiles.h:540:
first defined here
[  199s] collect2: error: ld returned 1 exit status
[  199s] make[2]: *** [gdb] Error 1
...

This happens because struct target_desc *tdesc_aarch64 is defined in
gdb/features/aarch64.c, which is included by two files
(gdb/aarch64-linux-nat.c and gdb/aarch64-tdep.c).

gdb/Changelog
2015-02-17  Max Ostapenko  <m.ostapenko@partner.samsung.com>

	PR gdb/17984
	* aarch64-linux-nat.c: Don't include features/aarch64.c anymore.
	(aarch64_linux_read_description): Remove initialize_tdesc_aarch64
	call.
	* aarch64-tdep.h (tdesc_aarch64): Declare.


^ permalink raw reply	[flat|nested] 42+ messages in thread
[parent not found: <dc1d9d1fcbc719cd4377aa178703ad00b1d8a3ac@kwanyin>]
* Test results for commit 90092e730582d024f621c78c6b5b1e6f2348e77d on branch master
@ 2015-02-11 17:20 sergiodj
  2015-02-14  8:36 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-11 17:20 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 90092e730582d024f621c78c6b5b1e6f2348e77d ***

Author: Nick Clifton <nickc@redhat.com>
Branch: master
Commit: 90092e730582d024f621c78c6b5b1e6f2348e77d

Fixes a problem with the RL78 disassembler which would incorrectly disassemble [HL+0] as [HL].
	* rl78-decode.opc: Add 'a' attribute to instructions that support
	[HL+0] addressing.
	* rl78-decode.c: Regenerate.
	* rl78-dis.c (print_insn_rl78): Display the offset in [HL+0]
	addresses.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit e1fcd5757be08c23c5e72595d3cc4f5736fa7cda on branch master
@ 2015-02-11 16:25 sergiodj
  2015-02-13 20:53 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-11 16:25 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT e1fcd5757be08c23c5e72595d3cc4f5736fa7cda ***

Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Branch: master
Commit: e1fcd5757be08c23c5e72595d3cc4f5736fa7cda

framefilter quit: Use RETURN_MASK_ERROR
Now when the code is exception safe we can let RETURN_QUIT to pass through as
all the installed cleanups with handle that.

gdb/ChangeLog
2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* python/py-framefilter.c (py_print_single_arg, enumerate_locals)
	(py_print_frame): Use RETURN_MASK_ERROR.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit 34019068f0082676b31926c7ec84dba0cfb2aba5 on branch master
@ 2015-02-11 14:25 sergiodj
  2015-02-13  1:42 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-11 14:25 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 34019068f0082676b31926c7ec84dba0cfb2aba5 ***

Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Branch: master
Commit: 34019068f0082676b31926c7ec84dba0cfb2aba5

framefilter quit: Code cleanup: Reindentation
Nothing significant but I find code more clear with less deep indentation.

gdb/ChangeLog
2015-02-11  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* python/py-framefilter.c (py_print_frame): Put conditional code paths
	with goto first, indent the former else codepath left.  Put variable
	'elided' to a new inner block.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit b9dc5a878402036ec7f631abae7505583a52b385 on branch master
@ 2015-02-11 13:46 sergiodj
  2015-02-12 18:47 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-11 13:46 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT b9dc5a878402036ec7f631abae7505583a52b385 ***

Author: H.J. Lu <hjl.tools@gmail.com>
Branch: master
Commit: b9dc5a878402036ec7f631abae7505583a52b385

Add ChangeLogs for commit 5ae0078cd


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit fc6b1256ee5062cda1dfdaf2173bee6563eacdb9 on branch master
@ 2015-02-11  2:09 sergiodj
  2015-02-12  4:00 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-11  2:09 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT fc6b1256ee5062cda1dfdaf2173bee6563eacdb9 ***

Author: Patrick Palka <patrick@parcs.ath.cx>
Branch: master
Commit: fc6b1256ee5062cda1dfdaf2173bee6563eacdb9

Fix a pair of screen-resizing issues in TUI
This patch fixes a pair of TUI issues related to screen resizing:

1. In tui_handle_resize_during_io(), when the TUI screen gets resized,
we fail to update GDB's idea about the height of the output window.

You can see this bug by doing:

  a. Enter TUI mode.
  b. "show height"
  c. Resize the terminal.
  d. "show height"

And observe that despite resizing the terminal, the reported height
remains unchanged.  Note that a similar issue exists in the CLI.

The fix for this is simple: call tui_update_gdb_sizes() after performing
a resize, so that the "height" variable remains consistent with the
height of TUI's output window.

2. In tui_enable(), the call to tui_update_gdb_sizes() may clobber
readline's idea of the actual screen dimensions, and a subsequent
pending resize will use bogus terminal dimensions.

You can see this bug by doing:

  a. Enter TUI mode.
  b. Exit TUI mode.
  c. Resize the terminal.
  d. Enter TUI mode.
  e. Press a key to resize the screen.

And observe that the terminal gets incorrectly resized to the wrong
dimensions.  To fix this issue, we should oppurtunistically resize the
screen in tui_enable().  That way we eliminate the possibility of a
pending resize triggering right after we call tui_update_gdb_sizes().

gdb/ChangeLog:

	* tui/tui-io.c (tui_handle_resize_during_io): Call
	tui_update_gdb_sizes() after resizing the screen.
	* tui/tui.c (tui_enable): Resize the terminal before
	calling tui_update_gdb_sizes().


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit 9f615e3af0356052a475812cb5a4380a5fe51182 on branch master
@ 2015-02-11  1:41 sergiodj
  2015-02-12  0:14 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-11  1:41 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 9f615e3af0356052a475812cb5a4380a5fe51182 ***

Author: Mark Wielaard <mjw@redhat.com>
Branch: master
Commit: 9f615e3af0356052a475812cb5a4380a5fe51182

gdb producer_is_gcc fix bool return value.
gdb/ChangeLog:

	* utils.c (producer_is_gcc): Return true or false.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit b1ffba5a7fe1eb1fb97f3e81dd5cc78b59eb1fea on branch master
@ 2015-02-11  1:22 sergiodj
  2015-02-11 22:49 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-11  1:22 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT b1ffba5a7fe1eb1fb97f3e81dd5cc78b59eb1fea ***

Author: Mark Wielaard <mjw@redhat.com>
Branch: master
Commit: b1ffba5a7fe1eb1fb97f3e81dd5cc78b59eb1fea

Change producer_is_gcc function return type to bool.
gdb/ChangeLog:

        * utils.h (producer_is_gcc): Change return type to bool. Add major
        argument.
        * utils.c (producer_is_gcc): Likewise.
        (producer_is_gcc_ge_4): Adjust producer_is_gcc call.
        * dwarf2read.c (check_producer): Likewise.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit c1cc6152620563bbe861cfc2fa0a796e71ca87b5 on branch master
@ 2015-02-10 23:43 sergiodj
  2015-02-11 15:46 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-10 23:43 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT c1cc6152620563bbe861cfc2fa0a796e71ca87b5 ***

Author: Simon Marchi <simon.marchi@ericsson.com>
Branch: master
Commit: c1cc6152620563bbe861cfc2fa0a796e71ca87b5

Finish constification of varobj interface
This completes the constification of the struct varobj pointers in the
lang_varobj_ops interface partially done in
b09e2c591f9221d865bfe8425990a6bf9fab24e3. As suggested by Pedro,
varobj_get_path_expr casts away the const to assign the "mutable" struct
member.

gdb/ChangeLog:

	* ada-varobj.c (ada_name_of_child): Constify parent.
	(ada_path_expr_of_child): Same.
	(ada_value_of_child): Same.
	(ada_type_of_child): Same.
	* c-varobj.c (c_is_path_expr_parent): Same.
	(c_describe_child): Same.
	(c_name_of_child): Same.
	(c_value_of_child): Same.
	(c_type_of_child): Same.
	(cplus_number_of_children): Same.
	(cplus_describe_child): Constify var.
	(cplus_name_of_child): Constify parent.
	(cplus_value_of_child): Same.
	(cplus_type_of_child): Same.
	* jv-varobj.c (java_name_of_child): Same.
	(java_value_of_child): Same.
	(java_type_of_child): Same.
	* varobj.c (value_of_child): Same.
	(varobj_default_is_path_expr_parent): Constify var, parent and return
	value.
	(varobj_get_path_expr): Constify var, modify path_expr through
	mutable_var.
	(install_new_value): Constify parent.
	(value_of_child): Constify parent.
	* varobj.h (struct varobj): Constify parent.
	(struct lang_varobj_ops): Constify name_of_child, value_of_child and
	type_of_child.
	(varobj_get_path_expr): Constify var.
	(varobj_get_path_expr_parent): Constify var and return value.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit 834f871cdc6e5d9f5bda9ce607fd3c47f41a2ade on branch master
@ 2015-02-10 23:19 sergiodj
  2015-02-11 13:11 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-10 23:19 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 834f871cdc6e5d9f5bda9ce607fd3c47f41a2ade ***

Author: Nick Clifton <nickc@redhat.com>
Branch: master
Commit: 834f871cdc6e5d9f5bda9ce607fd3c47f41a2ade

Fix memory access violations discovered by running readelf compiled with undefined memory access sanitization on fuzzed binaries.
	PR binutils/17531
	* dwarf.c (display_debug_pubnames_worker): Use dwarf_vma type for
	offset.
	* readelf.c (dump_relocations): Handle printing offsets which are
	MIN_INT.
	(process_corefile_note_segment): Add range check of the namesz
	field.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit c1ee941477569693777617d2f5defbba21085216 on branch master
@ 2015-02-10 22:28 sergiodj
  2015-02-11  0:30 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-10 22:28 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT c1ee941477569693777617d2f5defbba21085216 ***

Author: Luis Machado <lgustavo@codesourcery.com>
Branch: master
Commit: c1ee941477569693777617d2f5defbba21085216

Relax ARM prologue unwinder assumption
Modify the ARM prologue unwinder to use the stop_reason hook instead of
returning imprecise frame id's through the arm prologue this_id hook.

gdb/
2015-02-10  Luis Machado  <lgustavo@codesourcery.com>

	* arm-tdep.c (arm_prologue_unwind_stop_reason): New function.
	(arm_prologue_this_id): Move PC and SP limit checks to
	arm_prologue_unwind_stop_reason.
	(arm_prologue_unwind) <stop_reason> : Set to
	arm_prologue_unwind_stop_reason.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit 0b24eb2de5a6dbefe48fd57fcf5d0e7fb24895d4 on branch master
@ 2015-02-10  0:44 sergiodj
  2015-02-10 21:05 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-10  0:44 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 0b24eb2de5a6dbefe48fd57fcf5d0e7fb24895d4 ***

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

PR remote/17946: Fix wrong comparison of pointer against char
We were comparing a pointer against a char on remote.c.  'dcb' filed a
bug to inform us about that.  I pushed the following patch under the
obvious rule.

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

	PR remote/17946
	* gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison
	of pointer against char.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit d33501a51f46193387ff2d101752a9a878202f82 on branch master
@ 2015-02-09 13:12 sergiodj
  2015-02-09 14:06 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-09 13:12 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT d33501a51f46193387ff2d101752a9a878202f82 ***

Author: Markus Metzger <markus.t.metzger@intel.com>
Branch: master
Commit: d33501a51f46193387ff2d101752a9a878202f82

record-btrace: add bts buffer size configuration option
Allow the size of the branch trace ring buffer to be defined by the
user.  The specified buffer size will be used when BTS tracing is
enabled for new threads.

The obtained buffer size may differ from the requested size.  The
actual buffer size for the current thread is shown in the "info record"
command.

Bigger buffers mean longer traces, but also longer processing time.

2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>

	* btrace.c (parse_xml_btrace_conf_bts): Add size.
	(btrace_conf_bts_attributes): New.
	(btrace_conf_children): Add attributes.
	* common/btrace-common.h (btrace_config_bts): New.
	(btrace_config)<bts>: New.
	(btrace_config): Update comment.
	* nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts):
	Use config.
	* features/btrace-conf.dtd: Increment version.  Add size
	attribute to bts element.
	* record-btrace.c (set_record_btrace_bts_cmdlist,
	show_record_btrace_bts_cmdlist): New.
	(record_btrace_adjust_size, record_btrace_print_bts_conf,
	record_btrace_print_conf, cmd_set_record_btrace_bts,
	cmd_show_record_btrace_bts): New.
	(record_btrace_info): Call record_btrace_print_conf.
	(_initialize_record_btrace): Add commands.
	* remote.c: Add PACKET_Qbtrace_conf_bts_size enum.
	(remote_protocol_features): Add Qbtrace-conf:bts:size packet.
	(btrace_sync_conf): Synchronize bts size.
	(_initialize_remote): Add Qbtrace-conf:bts:size packet.
	* NEWS: Announce new commands and new packets.

doc/
	* gdb.texinfo (Branch Trace Configuration Format): Add size.
	(Process Record and Replay): Describe new set|show commands.
	(General Query Packets): Describe Qbtrace-conf:bts:size packet.

testsuite/
	* gdb.btrace/buffer-size: New.

gdbserver/
	* linux-low.c (linux_low_btrace_conf): Print size.
	* server.c (handle_btrace_conf_general_set): New.
	(hanle_general_set): Call handle_btrace_conf_general_set.
	(handle_query): Report Qbtrace-conf:bts:size as supported.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Test results for commit f4abbc168227003a4836dd1a5dd558f40be96372 on branch master
@ 2015-02-09 12:43 sergiodj
  2015-02-09 12:53 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  0 siblings, 1 reply; 42+ messages in thread
From: sergiodj @ 2015-02-09 12:43 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT f4abbc168227003a4836dd1a5dd558f40be96372 ***

Author: Markus Metzger <markus.t.metzger@intel.com>
Branch: master
Commit: f4abbc168227003a4836dd1a5dd558f40be96372

record btrace: add configuration struct
Add a struct to describe the branch trace configuration and use it for
enabling branch tracing.

The user will be able to set configuration fields for each tracing format
to be used for new threads.

The actual configuration that is active for a given thread will be shown
in the "info record" command.

At the moment, the configuration struct only contains a format field
that is set to the only available format.

The format is the only configuration option that can not be set via set
commands.  It is given as argument to the "record btrace" command when
starting recording.

2015-02-09  Markus Metzger  <markus.t.metzger@intel.com>

	* Makefile.in (XMLFILES): Add btrace-conf.dtd.
	* x86-linux-nat.c (x86_linux_enable_btrace): Update parameters.
	(x86_linux_btrace_conf): New.
	(x86_linux_create_target): Initialize to_btrace_conf.
	* nat/linux-btrace.c (linux_enable_btrace): Update parameters.
	Check format.  Split into this and ...
	(linux_enable_bts): ... this.
	(linux_btrace_conf): New.
	(perf_event_skip_record): Renamed into ...
	(perf_event_skip_bts_record): ... this.  Updated users.
	(linux_disable_btrace): Split into this and ...
	(linux_disable_bts): ... this.
	(linux_read_btrace): Check format.
	* nat/linux-btrace.h (linux_enable_btrace): Update parameters.
	(linux_btrace_conf): New.
	(btrace_target_info)<ptid>: Moved.
	(btrace_target_info)<conf>: New.
	(btrace_target_info): Split into this and ...
	(btrace_tinfo_bts): ... this.  Updated users.
	* btrace.c (btrace_enable): Update parameters.
	(btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf)
	(btrace_conf_children, btrace_conf_attributes)
	(btrace_conf_elements): New.
	* btrace.h (btrace_enable): Update parameters.
	(btrace_conf, parse_xml_btrace_conf): New.
	* common/btrace-common.h (btrace_config): New.
	* feature/btrace-conf.dtd: New.
	* record-btrace.c (record_btrace_conf): New.
	(record_btrace_cmdlist): New.
	(record_btrace_enable_warn, record_btrace_open): Pass
	&record_btrace_conf.
	(record_btrace_info): Print recording format.
	(cmd_record_btrace_bts_start): New.
	(cmd_record_btrace_start): Call cmd_record_btrace_bts_start.
	(_initialize_record_btrace): Add "record btrace bts" subcommand.
	Add "record bts" alias command.
	* remote.c (remote_state)<btrace_config>: New.
	(remote_btrace_reset, PACKET_qXfer_btrace_conf): New.
	(remote_protocol_features): Add qXfer:btrace-conf:read.
	(remote_open_1): Call remote_btrace_reset.
	(remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF.
	(btrace_target_info)<conf>: New.
	(btrace_sync_conf, btrace_read_config): New.
	(remote_enable_btrace): Update parameters.  Call btrace_sync_conf and
	btrace_read_conf.
	(remote_btrace_conf): New.
	(init_remote_ops): Initialize to_btrace_conf.
	(_initialize_remote): Add qXfer:btrace-conf packet.
	* target.c (target_enable_btrace): Update parameters.
	(target_btrace_conf): New.
	* target.h (target_enable_btrace): Update parameters.
	(target_btrace_conf): New.
	(target_object)<TARGET_OBJECT_BTRACE_CONF>: New.
	(target_ops)<to_enable_btrace>: Update parameters and comment.
	(target_ops)<to_btrace_conf>: New.
	* target-delegates: Regenerate.
	* target-debug.h (target_debug_print_const_struct_btrace_config_p)
	(target_debug_print_const_struct_btrace_target_info_p): New.
	NEWS: Announce new command and new packet.

doc/
	* gdb.texinfo (Process Record and Replay): Describe the "record
	btrace bts" command.
	(General Query Packets): Describe qXfer:btrace-conf:read packet.
	(Branch Trace Configuration Format): New.

gdbserver/
	* linux-low.c (linux_low_enable_btrace): Update parameters.
	(linux_low_btrace_conf): New.
	(linux_target_ops)<to_btrace_conf>: Initialize.
	* server.c (current_btrace_conf): New.
	(handle_btrace_enable): Rename to ...
	(handle_btrace_enable_bts): ... this.  Pass &current_btrace_conf
	to target_enable_btrace.  Update comment.  Update users.
	(handle_qxfer_btrace_conf): New.
    (qxfer_packets): Add btrace-conf entry.
	(handle_query): Report qXfer:btrace-conf:read as supported packet.
	* target.h (target_ops)<enable_btrace>: Update parameters and comment.
	(target_ops)<read_btrace_conf>: New.
	(target_enable_btrace): Update parameters.
	(target_read_btrace_conf): New.

testsuite/
	* gdb.btrace/delta.exp: Update "info record" output.
	* gdb.btrace/enable.exp: Update "info record" output.
	* gdb.btrace/finish.exp: Update "info record" output.
	* gdb.btrace/instruction_history.exp: Update "info record" output.
	* gdb.btrace/next.exp: Update "info record" output.
	* gdb.btrace/nexti.exp: Update "info record" output.
	* gdb.btrace/step.exp: Update "info record" output.
	* gdb.btrace/stepi.exp: Update "info record" output.
	* gdb.btrace/nohist.exp: Update "info record" output.


^ permalink raw reply	[flat|nested] 42+ messages in thread
* Failures on Debian-x86_64-cc-with-index, branch master
@ 2015-02-06 20:44 sergiodj
  0 siblings, 0 replies; 42+ messages in thread
From: sergiodj @ 2015-02-06 20:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-x86_64

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

Commit(s) tested:
	d6c146e9ea09e050e6f05fa00312de3fe763e811

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-cc-with-index/.git/tree/?h=master&id=f9e007b0382fcb8c6d7af50e6ed29a67dd3c57df>

*** 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 1: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
============================


*** Also, the following failures have been found when comparing to the baseline ***
============================
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: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 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/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
============================


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




^ permalink raw reply	[flat|nested] 42+ messages in thread
* Failures on Debian-x86_64-cc-with-index, branch master
@ 2015-02-06  8:07 sergiodj
  0 siblings, 0 replies; 42+ messages in thread
From: sergiodj @ 2015-02-06  8:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-x86_64

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

Commit(s) tested:
	b9394193d08bef2193f805ded0af898e4c10a509

Author(s) (in the same order as the commits):
	Don Breazeal <donb@codesourcery.com>

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

*** Regressions found ***
============================
new FAIL: gdb.threads/manythreads.exp: GDB exits after stopping multithreaded program (timeout)
new FAIL: gdb.threads/manythreads.exp: stop threads 2 (timeout)
============================


*** Also, the following failures have been found when comparing to the baseline ***
============================
new FAIL: gdb.threads/manythreads.exp: GDB exits after stopping multithreaded program (timeout)
new FAIL: gdb.threads/manythreads.exp: stop threads 2 (timeout)
============================


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




^ permalink raw reply	[flat|nested] 42+ messages in thread
* Failures on Debian-x86_64-cc-with-index, branch master
@ 2015-02-05 18:39 sergiodj
  0 siblings, 0 replies; 42+ messages in thread
From: sergiodj @ 2015-02-05 18:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-x86_64

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

Commit(s) tested:
	881d5d5db08ee6b343e1f1fc560d785fed29428e

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/Debian-x86_64-cc-with-index/.git/tree/?h=master&id=cff88f6a400fae7e60ebc57a5cc52d18b6f9f8d3>

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugINpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugINpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugINpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugINpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugSEPpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugSEPpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugSEPpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugSEPpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugINpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugINpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieATTACH: attach-relinkYES: seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugINpieNO: reach-(_dl_debug_state|dl_main): reach (timeout)
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugINpieNO: reach-(_dl_debug_state|dl_main): set stop-on-solib-events 0
new FAIL: gdb.base/catch-signal.exp: save breakpoints for '' (timeout)
new FAIL: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior (timeout)
new FAIL: gdb.base/dprintf-non-stop.exp: inferior stopped (timeout)
new FAIL: gdb.base/multi-forks.exp: Run to exit 2 (timeout)
new FAIL: gdb.base/multi-forks.exp: inferior 1 (timeout)
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/setshow.exp: passing args (timeout)
PASS -> FAIL: gdb.base/setshow.exp: set check range off
PASS -> FAIL: gdb.base/setshow.exp: show check range (on)
new FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: continue to signal (timeout)
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: stepi to handler
new FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: continue to signal (timeout)
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
new FAIL: gdb.multi/multi-arch-exec.exp: continue across exec that changes architecture (timeout)
============================


*** Also, the following failures have been found when comparing to the baseline ***
============================
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugINpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugINpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugINpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugINpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugSEPpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugSEPpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugSEPpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugSEPpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugINpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugINpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieATTACH: attach-relinkYES: seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugINpieNO: reach-(_dl_debug_state|dl_main): reach (timeout)
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugINpieNO: reach-(_dl_debug_state|dl_main): set stop-on-solib-events 0
new FAIL: gdb.base/catch-signal.exp: save breakpoints for '' (timeout)
new FAIL: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior (timeout)
new FAIL: gdb.base/dprintf-non-stop.exp: inferior stopped (timeout)
new FAIL: gdb.base/multi-forks.exp: Run to exit 2 (timeout)
new FAIL: gdb.base/multi-forks.exp: inferior 1 (timeout)
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/setshow.exp: passing args (timeout)
PASS -> FAIL: gdb.base/setshow.exp: set check range off
PASS -> FAIL: gdb.base/setshow.exp: show check range (on)
new FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: continue to signal (timeout)
PASS -> FAIL: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: stepi to handler
new FAIL: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: continue to signal (timeout)
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
new FAIL: gdb.multi/multi-arch-exec.exp: continue across exec that changes architecture (timeout)
============================


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




^ permalink raw reply	[flat|nested] 42+ messages in thread
* Failures on Debian-x86_64-cc-with-index, branch master
@ 2015-02-05  8:02 sergiodj
  0 siblings, 0 replies; 42+ messages in thread
From: sergiodj @ 2015-02-05  8:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-x86_64

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

Commit(s) tested:
	20ba1ce66d31b9dd16ed8c648f46ce32aa3a03e0

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

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

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 42+ messages in thread
* Failures on Debian-x86_64-cc-with-index, branch master
@ 2015-02-05  3:53 sergiodj
  0 siblings, 0 replies; 42+ messages in thread
From: sergiodj @ 2015-02-05  3:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-x86_64

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

Commit(s) tested:
	42d9e5288b6576b56f3f803901433b88ee863bc6

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

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

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




^ permalink raw reply	[flat|nested] 42+ messages in thread
* Failures on Debian-x86_64-cc-with-index, branch master
@ 2015-02-05  3:17 sergiodj
  0 siblings, 0 replies; 42+ messages in thread
From: sergiodj @ 2015-02-05  3:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-x86_64

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

Commit(s) tested:
	f962539ad23759af4ba8f7eece1946fdc2f50876

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):
	<Error fetching commit ID for f962539ad23759af4ba8f7eece1946fdc2f50876>

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




^ permalink raw reply	[flat|nested] 42+ messages in thread
* Failures on Debian-x86_64-cc-with-index, branch master
@ 2015-02-05  3:17 sergiodj
  0 siblings, 0 replies; 42+ messages in thread
From: sergiodj @ 2015-02-05  3:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-x86_64

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

Commit(s) tested:
	dde9acd693251ccbe28d2d9c6c8b3cdc8ca884ed

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):
	<Error fetching commit ID for dde9acd693251ccbe28d2d9c6c8b3cdc8ca884ed>

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




^ permalink raw reply	[flat|nested] 42+ messages in thread
* Failures on Debian-x86_64-cc-with-index, branch master
@ 2015-02-05  2:24 sergiodj
  0 siblings, 0 replies; 42+ messages in thread
From: sergiodj @ 2015-02-05  2:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-x86_64

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

Commit(s) tested:
	1528345d6c4a407e0b36b3474eb458cbd04146f7

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):
	<Error fetching commit ID for 1528345d6c4a407e0b36b3474eb458cbd04146f7>

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




^ permalink raw reply	[flat|nested] 42+ messages in thread
* Failures on Debian-x86_64-cc-with-index, branch master
@ 2015-01-26 16:34 sergiodj
  0 siblings, 0 replies; 42+ messages in thread
From: sergiodj @ 2015-01-26 16:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-x86_64

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

Commit(s) tested:
	d35b90fb6ec3374f4d5d8d19bb8e41c8b1970315

Author(s) (in the same order as the commits):
	Mark Wielaard <mjw@redhat.com>

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

*** 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 1: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: 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.dwarf2/gdb-index.exp: touch binary
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 33
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 34
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 35
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 36
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 37
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 38
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 39
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 40
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 41
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 42
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 43
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 44
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 45
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 46
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 47
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 48
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 49
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 50
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 51
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 52
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 53
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 54
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 55
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 56
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 57
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 58
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 59
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 60
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 61
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 62
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 63
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of ABRT
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of ALRM
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of BUS
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of CHLD
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of CONT
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of DANGER
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of EMT
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of FPE
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of GRANT
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of HUP
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of ILL
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of IO
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of LOST
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of LWP
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of MSG
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PHONE
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PIPE
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of POLL
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PRIO
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PROF
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PWR
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of QUIT
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of RETRACT
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SAK
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SEGV
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SOUND
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SYS
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TERM
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TSTP
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TTIN
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TTOU
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of URG
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of USR1
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of USR2
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of VTALRM
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of WAITING
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of WINCH
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of WIND
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of XCPU
FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of XFSZ




^ permalink raw reply	[flat|nested] 42+ messages in thread
* Failures on Debian-x86_64-cc-with-index, branch master
@ 2015-01-26  0:47 sergiodj
  0 siblings, 0 replies; 42+ messages in thread
From: sergiodj @ 2015-01-26  0:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-x86_64

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

Commit(s) tested:
	76dbb86382d49feff10b3c4f5ba0e0d567ca090b

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 76dbb86382d49feff10b3c4f5ba0e0d567ca090b>

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




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

end of thread, other threads:[~2015-02-18 23:24 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-17 19:34 Test results for commit 03e98035a2a5d928ceb36ddd7b43369fbf72a008 on branch master sergiodj
2015-02-17 19:37 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj
2015-02-17 19:42 ` Failures on Fedora-ppc64be-m64, " sergiodj
2015-02-17 20:16 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-17 22:07 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj
2015-02-17 22:14 ` Failures on Fedora-i686, " sergiodj
2015-02-17 22:55 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj
2015-02-17 23:32 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj
2015-02-17 23:38 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj
2015-02-18  0:22 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj
2015-02-18  0:35 ` Failures on Fedora-ppc64le-m64, " sergiodj
2015-02-18  2:46 ` Failures on Debian-i686-native-gdbserver, " sergiodj
2015-02-18  3:01 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
  -- strict thread matches above, loose matches on Subject: below --
2015-02-18 14:06 Test results for commit f6a88844c36e2c03806563c9703b92af6ba0b345 on " sergiodj
2015-02-19  0:31 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-18  1:45 Test results for commit b05e3b0dd2a257f7f0c1e23ff4c36f369438ea81 on " sergiodj
2015-02-19  0:13 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-18  0:57 Test results for commit 3133f8c11fd2e18b9f5ffd35bb26410dc61a69c5 on " sergiodj
2015-02-18 22:56 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-17 23:08 Test results for commit c3e3045e5ce820055e2823e8c5b03b0e99a4b514 on " sergiodj
2015-02-18 13:18 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-17 10:37 Test results for commit 9f2e07213aa91f1882112df3e0d227638b7a085b on " sergiodj
2015-02-17 11:07 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
     [not found] <dc1d9d1fcbc719cd4377aa178703ad00b1d8a3ac@kwanyin>
2015-02-15 10:37 ` sergiodj
2015-02-11 17:20 Test results for commit 90092e730582d024f621c78c6b5b1e6f2348e77d on " sergiodj
2015-02-14  8:36 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-11 16:25 Test results for commit e1fcd5757be08c23c5e72595d3cc4f5736fa7cda on " sergiodj
2015-02-13 20:53 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-11 14:25 Test results for commit 34019068f0082676b31926c7ec84dba0cfb2aba5 on " sergiodj
2015-02-13  1:42 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-11 13:46 Test results for commit b9dc5a878402036ec7f631abae7505583a52b385 on " sergiodj
2015-02-12 18:47 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-11  2:09 Test results for commit fc6b1256ee5062cda1dfdaf2173bee6563eacdb9 on " sergiodj
2015-02-12  4:00 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-11  1:41 Test results for commit 9f615e3af0356052a475812cb5a4380a5fe51182 on " sergiodj
2015-02-12  0:14 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-11  1:22 Test results for commit b1ffba5a7fe1eb1fb97f3e81dd5cc78b59eb1fea on " sergiodj
2015-02-11 22:49 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-10 23:43 Test results for commit c1cc6152620563bbe861cfc2fa0a796e71ca87b5 on " sergiodj
2015-02-11 15:46 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-10 23:19 Test results for commit 834f871cdc6e5d9f5bda9ce607fd3c47f41a2ade on " sergiodj
2015-02-11 13:11 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-10 22:28 Test results for commit c1ee941477569693777617d2f5defbba21085216 on " sergiodj
2015-02-11  0:30 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-10  0:44 Test results for commit 0b24eb2de5a6dbefe48fd57fcf5d0e7fb24895d4 on " sergiodj
2015-02-10 21:05 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-09 13:12 Test results for commit d33501a51f46193387ff2d101752a9a878202f82 on " sergiodj
2015-02-09 14:06 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-09 12:43 Test results for commit f4abbc168227003a4836dd1a5dd558f40be96372 on " sergiodj
2015-02-09 12:53 ` Failures on Debian-x86_64-cc-with-index, " sergiodj
2015-02-06 20:44 sergiodj
2015-02-06  8:07 sergiodj
2015-02-05 18:39 sergiodj
2015-02-05  8:02 sergiodj
2015-02-05  3:53 sergiodj
2015-02-05  3:17 sergiodj
2015-02-05  3:17 sergiodj
2015-02-05  2:24 sergiodj
2015-01-26 16:34 sergiodj
2015-01-26  0:47 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).