public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670)
@ 2018-01-11  4:10 sergiodj+buildbot
  2018-01-11  4:10 ` Failures on Fedora-x86_64-m64, branch gdb-8.1-branch sergiodj+buildbot
                   ` (11 more replies)
  0 siblings, 12 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  4:10 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 2707f065bea6f20db9296dbda4577ce45b69093a ***

Author: Pedro Alves <palves@redhat.com>
Branch: gdb-8.1-branch
Commit: 2707f065bea6f20db9296dbda4577ce45b69093a

Ada: make verbatim matcher override other language matchers (PR gdb/22670)

A previous patch fixed verbatim matching in the lookup at the minimal
symbol level, but we should also be finding that same symbol through
the partial/full symtab search.

For example, this is what happens if we use "print" instead of
"break":

    (gdb) p <MixedCaseFunc>
    $1 = {<text variable, no debug info>} 0x4024dc <MixedCaseFunc>

Before the C++ wildmatching series, GDB knows that MixedCaseFunc is a
function without parameters, and the expression above means calling
it.  If you try it before having started the inferior, you'd get the
following (expected) error:

    (gdb) print  <MixedCaseFunc>
    You can't do that without a process to debug.

The main idea behind making the name matcher be determined by the
symbol's language is so that C++ (etc.) wildmatching in linespecs
works even if the current language is not C++, as e.g., when you step
through C or assembly code.

Ada's verbatim matching syntax however ("<...>") isn't quite the same.
It is more a property of the current language than of a particular
symbol's language.  We want to support this syntax when debugging an
Ada program, but it's reason of existence is to find non-Ada symbols.
This suggests going back to enabling it depending on current language
instead of language of the symbol being matched.

I'm not entirely happy with the "current_language" reference (though I
think that it's harmless).  I think we could try storing the current
language in the lookup_name_info object, and then convert a bunch of
functions more to pass around lookup_name_info objects instead of
"const char *" names.  I.e., build the lookup_name_info higher up.
I'm not sure about that, I'll have to think more about it.  Maybe
something different will be better.  Meanwhile, this gets us going.

I've extended the testcase to also exercise a no-debug-info function,
for extra coverage of the minsyms-only paths.

gdb/ChangeLog:
2018-01-10  Pedro Alves  <palves@redhat.com>

	PR gdb/22670
	* dwarf2read.c
	(gdb_index_symbol_name_matcher::gdb_index_symbol_name_matcher):
	Adjust to use language_get_symbol_name_matcher instead of
	language_defn::la_get_symbol_name_matcher.
	* language.c (language_get_symbol_name_matcher): If in Ada mode
	and the lookup name is a verbatim match, return Ada's matcher.
	* language.h (language_get_symbol_name_matcher): Adjust comment.
	(ada_lookup_name_info::verbatim_p):: New method.

gdb/testsuite/ChangeLog:
2018-01-10  Pedro Alves  <palves@redhat.com>

	PR gdb/22670
	* gdb.ada/bp_c_mixed_case.exp: Add intro comment.  Test printing C
	functions too.  Test setting breakpoints and printing C functions
	with no debug info too.
	* gdb.ada/bp_c_mixed_case/qux.c: New file.


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

* Failures on Fedora-x86_64-m64, branch gdb-8.1-branch
  2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
@ 2018-01-11  4:10 ` sergiodj+buildbot
  2018-01-11  4:17 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  4:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

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

Commit(s) tested:
	2707f065bea6f20db9296dbda4577ce45b69093a

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

Subject:
	Ada: make verbatim matcher override other language matchers (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-m64/27/2707f065bea6f20db9296dbda4577ce45b69093a/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.1-branch
  2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
  2018-01-11  4:10 ` Failures on Fedora-x86_64-m64, branch gdb-8.1-branch sergiodj+buildbot
@ 2018-01-11  4:17 ` sergiodj+buildbot
  2018-01-11  4:19 ` Failures on Fedora-i686, " sergiodj+buildbot
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  4:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	2707f065bea6f20db9296dbda4577ce45b69093a

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

Subject:
	Ada: make verbatim matcher override other language matchers (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/27/2707f065bea6f20db9296dbda4577ce45b69093a/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 3
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 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 -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-i686, branch gdb-8.1-branch
  2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
  2018-01-11  4:10 ` Failures on Fedora-x86_64-m64, branch gdb-8.1-branch sergiodj+buildbot
  2018-01-11  4:17 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
@ 2018-01-11  4:19 ` sergiodj+buildbot
  2018-01-11  4:24 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  4:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	2707f065bea6f20db9296dbda4577ce45b69093a

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

Subject:
	Ada: make verbatim matcher override other language matchers (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-i686/27/2707f065bea6f20db9296dbda4577ce45b69093a/>

*** Diff to previous build ***
============================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
new FAIL: gdb.python/py-finish-breakpoint2.exp: set FinishBP after the exception
new FAIL: gdb.python/py-finish-breakpoint2.exp: check FinishBreakpoint in catch
new FAIL: gdb.python/py-finish-breakpoint2.exp: check finish BP removal
new FAIL: gdb.python/py-finish-breakpoint2.exp: continue to second exception
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: step
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 3
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 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/signal-while-stepping-over-bp-other-thread.exp: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: force loop break in thread 2
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: stepped thread under control
============================


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

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




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

* Failures on Fedora-x86_64-m32, branch gdb-8.1-branch
  2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
                   ` (2 preceding siblings ...)
  2018-01-11  4:19 ` Failures on Fedora-i686, " sergiodj+buildbot
@ 2018-01-11  4:24 ` sergiodj+buildbot
  2018-01-11  4:31 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  4:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-2

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

Commit(s) tested:
	2707f065bea6f20db9296dbda4577ce45b69093a

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

Subject:
	Ada: make verbatim matcher override other language matchers (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-m32/27/2707f065bea6f20db9296dbda4577ce45b69093a/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal 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/signal-while-stepping-over-bp-other-thread.exp: step
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: thread-specific breakpoint was deleted
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch gdb-8.1-branch
  2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
                   ` (3 preceding siblings ...)
  2018-01-11  4:24 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
@ 2018-01-11  4:31 ` sergiodj+buildbot
  2018-01-11  4:35 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  4:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

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

Commit(s) tested:
	2707f065bea6f20db9296dbda4577ce45b69093a

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

Subject:
	Ada: make verbatim matcher override other language matchers (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m32/27/2707f065bea6f20db9296dbda4577ce45b69093a/>

*** Diff to previous build ***
============================
new FAIL: gdb.base/corefile.exp: core-file warning-free
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: step
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
============================


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

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




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

* Failures on Fedora-x86_64-cc-with-index, branch gdb-8.1-branch
  2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
                   ` (4 preceding siblings ...)
  2018-01-11  4:31 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2018-01-11  4:35 ` sergiodj+buildbot
  2018-01-11  4:40 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  4:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	2707f065bea6f20db9296dbda4577ce45b69093a

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

Subject:
	Ada: make verbatim matcher override other language matchers (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-cc-with-index/27/2707f065bea6f20db9296dbda4577ce45b69093a/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/amd64-disp-step-avx.exp: vex2: xmm0 has expected value before
PASS -> FAIL: gdb.multi/multi-arch-exec.exp: first_arch=1: selected_thread=1: follow_exec_mode=new: continue across exec that changes architecture
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
                   ` (5 preceding siblings ...)
  2018-01-11  4:35 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
@ 2018-01-11  4:40 ` sergiodj+buildbot
  2018-01-11  7:32 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  4:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	2707f065bea6f20db9296dbda4577ce45b69093a

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

Subject:
	Ada: make verbatim matcher override other language matchers (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/27/2707f065bea6f20db9296dbda4577ce45b69093a/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Ubuntu-AArch64-native-gdbserver-m64, branch gdb-8.1-branch
  2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
                   ` (6 preceding siblings ...)
  2018-01-11  4:40 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2018-01-11  7:32 ` sergiodj+buildbot
  2018-01-11  8:09 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  7:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-aarch64-1

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

Commit(s) tested:
	2707f065bea6f20db9296dbda4577ce45b69093a

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

Subject:
	Ada: make verbatim matcher override other language matchers (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch64-native-gdbserver-m64/27/2707f065bea6f20db9296dbda4577ce45b69093a/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=5: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=18: wait for stops
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Ubuntu-AArch64-m64, branch gdb-8.1-branch
  2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
                   ` (7 preceding siblings ...)
  2018-01-11  7:32 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
@ 2018-01-11  8:09 ` sergiodj+buildbot
  2018-01-11 11:13 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  8:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-aarch64-1

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

Commit(s) tested:
	2707f065bea6f20db9296dbda4577ce45b69093a

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

Subject:
	Ada: make verbatim matcher override other language matchers (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch64-m64/27/2707f065bea6f20db9296dbda4577ce45b69093a/>

*** Diff to previous build ***
============================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=4: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=8: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=9: wait for stops
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, branch gdb-8.1-branch
  2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
                   ` (8 preceding siblings ...)
  2018-01-11  8:09 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
@ 2018-01-11 11:13 ` sergiodj+buildbot
  2018-01-11 11:44 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
  2018-01-11 12:14 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
  11 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11 11:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-trusty-aarch32-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-native-extended-gdbserver-m32/builds/2530>

Commit(s) tested:
	2707f065bea6f20db9296dbda4577ce45b69093a

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

Subject:
	Ada: make verbatim matcher override other language matchers (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-native-extended-gdbserver-m32/27/2707f065bea6f20db9296dbda4577ce45b69093a/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=1: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=3: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=7: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=17: wait for stops
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Ubuntu-AArch32-native-gdbserver-m32, branch gdb-8.1-branch
  2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
                   ` (9 preceding siblings ...)
  2018-01-11 11:13 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2018-01-11 11:44 ` sergiodj+buildbot
  2018-01-11 12:14 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
  11 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11 11:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-trusty-aarch32-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-native-gdbserver-m32/builds/2512>

Commit(s) tested:
	2707f065bea6f20db9296dbda4577ce45b69093a

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

Subject:
	Ada: make verbatim matcher override other language matchers (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-native-gdbserver-m32/27/2707f065bea6f20db9296dbda4577ce45b69093a/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=2: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=4: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=6: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=10: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=15: wait for stops
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Ubuntu-AArch32-m32, branch gdb-8.1-branch
  2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
                   ` (10 preceding siblings ...)
  2018-01-11 11:44 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
@ 2018-01-11 12:14 ` sergiodj+buildbot
  11 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11 12:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-trusty-aarch32-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2531>

Commit(s) tested:
	2707f065bea6f20db9296dbda4577ce45b69093a

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

Subject:
	Ada: make verbatim matcher override other language matchers (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/27/2707f065bea6f20db9296dbda4577ce45b69093a/>

*** Diff to previous build ***
============================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=12: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=13: wait for stops
new FAIL: gdb.threads/queue-signal.exp: determine thread functions
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-07-31 15:51 [binutils-gdb/gdb-8.1-branch] Bump GDB version number to 8.1.1.DATE-git sergiodj+buildbot
@ 2018-07-31 21:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-07-31 21:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	f9812ee2042783bad9e8901cf47c178daee15a00

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

Subject:
	Bump GDB version number to 8.1.1.DATE-git.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/f9/f9812ee2042783bad9e8901cf47c178daee15a00/>

*** Diff to previous build ***
============================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-07-31 15:37 [binutils-gdb/gdb-8.1-branch] Set GDB version number to 8.1.1 sergiodj+buildbot
@ 2018-07-31 20:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-07-31 20:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	f99d9b9f436dce02aa06839395c67d400b2a0de0

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

Subject:
	Set GDB version number to 8.1.1.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/f9/f99d9b9f436dce02aa06839395c67d400b2a0de0/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.ada/access_tagged_param.exp: continue
KPASS -> KFAIL: gdb.ada/maint_with_ada.exp: maintenance check-psymtabs
PASS -> FAIL: gdb.base/async.exp: stepi&
PASS -> FAIL: gdb.base/async.exp: nexti&
PASS -> FAIL: gdb.base/async.exp: finish&
PASS -> FAIL: gdb.base/consecutive.exp: stopped at bp, 2nd instr
PASS -> FAIL: gdb.base/info-os.exp: continue to breakpoint: Set breakpoint here
PASS -> FAIL: gdb.base/info-os.exp: get shared memory key
PASS -> FAIL: gdb.base/info-os.exp: get shared memory ID
PASS -> FAIL: gdb.base/info-os.exp: get semaphore key
PASS -> FAIL: gdb.base/info-os.exp: get semaphore ID
PASS -> FAIL: gdb.base/info-os.exp: get message queue key
PASS -> FAIL: gdb.base/info-os.exp: get message queue ID
PASS -> FAIL: gdb.base/info-os.exp: get socket port number
PASS -> FAIL: gdb.base/info-os.exp: get process list
PASS -> FAIL: gdb.base/range-stepping.exp: step over func: next: vCont;r=2
PASS -> FAIL: gdb.base/shlib-call.exp: step out of shr2 epilogue to main
PASS -> FAIL: gdb.base/shlib-call.exp: step into mainshr1
PASS -> FAIL: gdb.base/skip.exp: step after disabling 3: step 3
PASS -> FAIL: gdb.base/skip.exp: step after disabling 3: step 5
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 5
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 5
new UNRESOLVED: gdb.base/valgrind-db-attach.exp: valgrind started
PASS -> FAIL: gdb.base/watchpoint-reuse-slot.exp: always-inserted off: watch x watch: : width 1, iter 0: base + 0: stepi advanced
PASS -> FAIL: gdb.compile/compile-print.exp: compile print vararray
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
PASS -> FAIL: gdb.go/hello.exp: string after assignment check
new FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: stopped at bp, 2nd instr
PASS -> FAIL: gdb.reverse/consecutive-reverse.exp: stopped at bp, 2nd instr
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse stepi from a function call
PASS -> FAIL: gdb.reverse/step-precsave.exp: simple reverse stepi
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step out of called fn
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next over call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse stepi from a function call
PASS -> FAIL: gdb.reverse/step-reverse.exp: simple reverse stepi
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step out of called fn
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next over call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next test 2
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-06-09 17:45 [binutils-gdb/gdb-8.1-branch] Fix build issue with Python 3.7 sergiodj+buildbot
@ 2018-06-11 21:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-06-11 21:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	863d5065467b16304f6b5c80a186e3bcc68c48a6

Author(s) (in the same order as the commits):
	Paul Koning <paul_koning@dell.com>

Subject:
	Fix build issue with Python 3.7

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/86/863d5065467b16304f6b5c80a186e3bcc68c48a6/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups with filter
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-05-31  4:02 [binutils-gdb/gdb-8.1-branch] Unset gdbarch significant_addr_bit by default sergiodj+buildbot
@ 2018-06-08 16:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-06-08 16:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	8679931c2c9f97ad182f8f0a9e8fab20305719b5

Author(s) (in the same order as the commits):
	Omair Javaid <omair.javaid@linaro.org>

Subject:
	Unset gdbarch significant_addr_bit by default

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/86/8679931c2c9f97ad182f8f0a9e8fab20305719b5/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-05-10 19:22 [binutils-gdb/gdb-8.1-branch] gdbserver/Windows: Fix "no program to debug" error sergiodj+buildbot
@ 2018-05-11 17:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-05-11 17:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	c0c0270a9a38e1e888e9d6f0185b465d3751f518

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

Subject:
	gdbserver/Windows: Fix "no program to debug" error

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/c0/c0c0270a9a38e1e888e9d6f0185b465d3751f518/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar3 modified
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-05-10 19:11 [binutils-gdb/gdb-8.1-branch] [gdbserver/win32] fatal "glob could not process pattern '(null)'" error sergiodj+buildbot
@ 2018-05-11 12:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-05-11 12:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	e378993dd341b10571a7cb6e98d5d3b48a06e24c

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

Subject:
	[gdbserver/win32] fatal "glob could not process pattern '(null)'" error

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/e3/e378993dd341b10571a7cb6e98d5d3b48a06e24c/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-05-10 12:45 [binutils-gdb/gdb-8.1-branch] Fix tagged pointer support sergiodj+buildbot
@ 2018-05-10 18:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-05-10 18:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	8a620990c7634e872b31718a8411a90a6f384457

Author(s) (in the same order as the commits):
	Omair Javaid <omair.javaid@linaro.org>

Subject:
	Fix tagged pointer support

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/8a/8a620990c7634e872b31718a8411a90a6f384457/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/amd64-i386-address.exp: trap stop
PASS -> FAIL: gdb.arch/amd64-i386-address.exp: x/wx $esp
PASS -> FAIL: gdb.arch/amd64-i386-address.exp: x/wx $ebx
PASS -> FAIL: gdb.base/info-os.exp: continue to breakpoint: Set breakpoint here
PASS -> FAIL: gdb.base/info-os.exp: get shared memory key
PASS -> FAIL: gdb.base/info-os.exp: get shared memory ID
PASS -> FAIL: gdb.base/info-os.exp: get semaphore key
PASS -> FAIL: gdb.base/info-os.exp: get semaphore ID
PASS -> FAIL: gdb.base/info-os.exp: get message queue key
PASS -> FAIL: gdb.base/info-os.exp: get message queue ID
PASS -> FAIL: gdb.base/info-os.exp: get socket port number
PASS -> FAIL: gdb.base/info-os.exp: get process list
PASS -> FAIL: gdb.multi/multi-arch-exec.exp: first_arch=1: selected_thread=1: follow_exec_mode=same: continue across exec that changes architecture
PASS -> FAIL: gdb.multi/multi-arch-exec.exp: first_arch=1: selected_thread=1: follow_exec_mode=new: continue across exec that changes architecture
PASS -> FAIL: gdb.multi/multi-arch-exec.exp: first_arch=1: selected_thread=2: follow_exec_mode=same: continue across exec that changes architecture
PASS -> FAIL: gdb.multi/multi-arch-exec.exp: first_arch=1: selected_thread=2: follow_exec_mode=new: continue across exec that changes architecture
new FAIL: gdb.multi/multi-arch-exec.exp: first_arch=2: selected_thread=1: follow_exec_mode=same: couldn't run to all_started
new FAIL: gdb.multi/multi-arch-exec.exp: first_arch=2: selected_thread=1: follow_exec_mode=new: couldn't run to all_started
new FAIL: gdb.multi/multi-arch-exec.exp: first_arch=2: selected_thread=2: follow_exec_mode=same: couldn't run to all_started
new FAIL: gdb.multi/multi-arch-exec.exp: first_arch=2: selected_thread=2: follow_exec_mode=new: couldn't run to all_started
new FAIL: gdb.multi/multi-arch.exp: starting inferior 2
PASS -> FAIL: gdb.multi/multi-arch.exp: info inferiors
PASS -> FAIL: gdb.multi/multi-arch.exp: set schedule-multiple on
PASS -> FAIL: gdb.multi/multi-arch.exp: inf1 event with inf2 selected: inferior 2
PASS -> FAIL: gdb.multi/multi-arch.exp: inf1 event with inf2 selected: b hello_loop
PASS -> FAIL: gdb.multi/multi-arch.exp: inf1 event with inf2 selected: continue to hello_loop
new FAIL: gdb.multi/multi-arch.exp: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.multi/multi-arch.exp: inf2 event with inf1 selected: b hangout_loop
PASS -> FAIL: gdb.multi/multi-arch.exp: inf2 event with inf1 selected: continue to hangout_loop
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-04-12 21:16 [binutils-gdb/gdb-8.1-branch] Fix -D_GLIBCXX_DEBUG gdb-add-index regression sergiodj+buildbot
@ 2018-04-12 22:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-04-12 22:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	55404da3795df1b5eff514ce9d0377b6a78e5904

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

Subject:
	Fix -D_GLIBCXX_DEBUG gdb-add-index regression

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/55/55404da3795df1b5eff514ce9d0377b6a78e5904/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/amd64-disp-step-avx.exp: vex2: xmm0 has expected value before
PASS -> FAIL: gdb.base/info-os.exp: get process groups
PASS -> FAIL: gdb.base/info-os.exp: get threads
PASS -> FAIL: gdb.base/info-os.exp: get file descriptors
PASS -> FAIL: gdb.base/info-os.exp: get internet-domain sockets
PASS -> FAIL: gdb.base/info-os.exp: get shared-memory regions
PASS -> FAIL: gdb.base/info-os.exp: get semaphores
PASS -> FAIL: gdb.base/info-os.exp: get message queues
PASS -> FAIL: gdb.base/info-os.exp: continue
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/new-ui-mi-sync.exp: sync-command=run: add-inferior
PASS -> FAIL: gdb.mi/new-ui-mi-sync.exp: sync-command=run: interrupt on the CLI
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-04-04 16:12 [binutils-gdb/gdb-8.1-branch] i386: Clear vex instead of vex.evex sergiodj+buildbot
@ 2018-04-04 16:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-04-04 16:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

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

Commit(s) tested:
	f13be04ec6cc83947d8c4997aa48296a915b637f

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

Subject:
	i386: Clear vex instead of vex.evex

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/f1/f13be04ec6cc83947d8c4997aa48296a915b637f/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.rust/generics.exp: print identity::<u32>
PASS -> FAIL: gdb.rust/generics.exp: ptype identity::<u32>
PASS -> FAIL: gdb.rust/generics.exp: print identity::<f64>
PASS -> FAIL: gdb.rust/generics.exp: ptype identity::<f64>
PASS -> FAIL: gdb.rust/generics.exp: print identity::< Hold<i32> >
PASS -> FAIL: gdb.rust/generics.exp: print identity::<generics::Hold<i32> >
PASS -> FAIL: gdb.rust/generics.exp: print identity::<Hold<i32>>
PASS -> FAIL: gdb.rust/simple.exp: print k
PASS -> FAIL: gdb.rust/simple.exp: print str_some
PASS -> FAIL: gdb.rust/simple.exp: print str_none
PASS -> FAIL: gdb.rust/simple.exp: print custom_some
PASS -> FAIL: gdb.rust/simple.exp: print custom_none
new FAIL: gdb.rust/traits.exp: print *td
new FAIL: gdb.rust/traits.exp: print *tu
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-03-02 12:58 [binutils-gdb/gdb-8.1-branch] Conditionally include "<windows.h>" on common/pathstuff.c (and unbreak build on mingw*) sergiodj+buildbot
@ 2018-03-02 14:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-03-02 14:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	a74e30b243dec8b38c8c769da04635210f9ef986

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

Subject:
	Conditionally include "<windows.h>" on common/pathstuff.c (and unbreak build on mingw*)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/a7/a74e30b243dec8b38c8c769da04635210f9ef986/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: inferior 1 exited
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-03-01  3:00 [binutils-gdb/gdb-8.1-branch] Change order of error message printed when gdbserver can't find CWD sergiodj+buildbot
@ 2018-03-01  4:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-03-01  4:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	506817a3abd98859eb3474389e756c0253cc28a1

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

Subject:
	Change order of error message printed when gdbserver can't find CWD

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/50/506817a3abd98859eb3474389e756c0253cc28a1/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-03-01  2:49 [binutils-gdb/gdb-8.1-branch] Make gdbserver work with filename-only binaries sergiodj+buildbot
@ 2018-03-01  3:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-03-01  3:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	2441702a72f324e41a1624dc042b334f375e2d81

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

Subject:
	Make gdbserver work with filename-only binaries

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/24/2441702a72f324e41a1624dc042b334f375e2d81/>

*** Diff to previous build ***
============================
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-03-01  2:36 [binutils-gdb/gdb-8.1-branch] Create new common/pathstuff.[ch] sergiodj+buildbot
@ 2018-03-01  3:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-03-01  3:01 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/8966>

Commit(s) tested:
	6d607b8812b35ff36fbbad2915696f6669f86a32

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

Subject:
	Create new common/pathstuff.[ch]

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/6d/6d607b8812b35ff36fbbad2915696f6669f86a32/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/amd64-disp-step-avx.exp: vex2: xmm0 has expected value before
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-02-09 12:51 [binutils-gdb/gdb-8.1-branch] gdb/NEWS: Clarify the news entry for "rbreak" in GDB 8.1 sergiodj+buildbot
@ 2018-02-09 13:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-02-09 13:42 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/8776>

Commit(s) tested:
	c58318003f7fd63e43b0b6aea045bc16bada8c50

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

Subject:
	gdb/NEWS: Clarify the news entry for "rbreak" in GDB 8.1

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/c5/c58318003f7fd63e43b0b6aea045bc16bada8c50/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/amd64-disp-step-avx.exp: vex2: xmm0 has expected value before
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-31  3:31 [binutils-gdb/gdb-8.1-branch] Bump GDB version number to 8.1.0.DATE-git sergiodj+buildbot
@ 2018-01-31  5:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-31  5:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	37634d335c0e962d9531125dd13cf9d6210429dd

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

Subject:
	Bump GDB version number to 8.1.0.DATE-git.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/37/37634d335c0e962d9531125dd13cf9d6210429dd/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-31  3:17 [binutils-gdb/gdb-8.1-branch] Set GDB version number to 8.1 sergiodj+buildbot
@ 2018-01-31  4:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-31  4:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	b755db3c98137baaff8a154d936d326d9a9c72a7

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

Subject:
	Set GDB version number to 8.1.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/b7/b755db3c98137baaff8a154d936d326d9a9c72a7/>

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


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-27 17:20 [binutils-gdb/gdb-8.1-branch] Avoid compilation errors in MinGW native builds of GDB sergiodj+buildbot
@ 2018-01-27 19:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-27 19:40 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/8685>

Commit(s) tested:
	0b2b72156eef6e1a34f316e96278bc286f0d0506

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

Subject:
	Avoid compilation errors in MinGW native builds of GDB

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/0b/0b2b72156eef6e1a34f316e96278bc286f0d0506/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/amd64-disp-step-avx.exp: vex2: xmm0 has expected value before
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-27 16:54 [binutils-gdb/gdb-8.1-branch] Avoid compilation warning in libiberty/simple-object-xcoff.c sergiodj+buildbot
@ 2018-01-27 18:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-27 18:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

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

Commit(s) tested:
	3d721be4ac8c6c8452c25aa382d09bd487dcded3

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

Subject:
	Avoid compilation warning in libiberty/simple-object-xcoff.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/3d/3d721be4ac8c6c8452c25aa382d09bd487dcded3/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-24 19:02 [binutils-gdb/gdb-8.1-branch] Fix GCC PR83906 - [8 Regression] Random FAIL: libstdc++-prettyprinters/80276.cc whatis p4 sergiodj+buildbot
@ 2018-01-24 20:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-24 20:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	76112dde119b37c1bf6b6234049a94a288d3e02f

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

Subject:
	Fix GCC PR83906 - [8 Regression] Random FAIL: libstdc++-prettyprinters/80276.cc whatis p4

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/76/76112dde119b37c1bf6b6234049a94a288d3e02f/>

*** Diff to previous build ***
============================
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: inferior 1 exited
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-22 21:38 [binutils-gdb/gdb-8.1-branch] MAINTAINERS: Update my company e-mail address sergiodj+buildbot
@ 2018-01-22 22:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-22 22:03 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/8648>

Commit(s) tested:
	fd37310fb82980b66cca5b0bce5a38414d64b44f

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

Subject:
	MAINTAINERS: Update my company e-mail address

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/fd/fd37310fb82980b66cca5b0bce5a38414d64b44f/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/amd64-disp-step-avx.exp: vex2: xmm0 has expected value before
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-18  0:02 [binutils-gdb/gdb-8.1-branch] Fix warning on gdb/compile/compile.c (C++-ify "triplet_rx") sergiodj+buildbot
@ 2018-01-18  2:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-18  2:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	2a54d2158beeb2833cb3fb4da68e7c55e341159a

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

Subject:
	Fix warning on gdb/compile/compile.c (C++-ify "triplet_rx")

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/2a/2a54d2158beeb2833cb3fb4da68e7c55e341159a/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-17 14:00 [binutils-gdb/gdb-8.1-branch] configure: Fix test for fs_base/gs_base in <sys/user.h> sergiodj+buildbot
@ 2018-01-17 16:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-17 16:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	6949085e3eaef536b2c76252452ec3e63e9f112c

Author(s) (in the same order as the commits):
	Eldar Abusalimov <eldar.abusalimov@jetbrains.com>

Subject:
	configure: Fix test for fs_base/gs_base in <sys/user.h>

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/69/6949085e3eaef536b2c76252452ec3e63e9f112c/>

*** Diff to previous build ***
============================
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-17 13:36 [binutils-gdb/gdb-8.1-branch] Don't pass -m64 to libcc1 on aarch64-linux sergiodj+buildbot
@ 2018-01-17 14:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-17 14:48 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/8588>

Commit(s) tested:
	94485cac9629ca3e5489014e1b704e35f988d3e3

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

Subject:
	Don't pass -m64 to libcc1 on aarch64-linux.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/94/94485cac9629ca3e5489014e1b704e35f988d3e3/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/amd64-disp-step-avx.exp: vex2: xmm0 has expected value before
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-17 11:59 [binutils-gdb/gdb-8.1-branch] Relax gdb.compile/compile.exp to match the address printed for frame sergiodj+buildbot
@ 2018-01-17 13:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-17 13:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	862f0945fb83319efee9c621a3434384f1882270

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

Subject:
	Relax gdb.compile/compile.exp to match the address printed for frame

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/86/862f0945fb83319efee9c621a3434384f1882270/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-15 22:32 [binutils-gdb/gdb-8.1-branch] Fix scm-ports.exp regression sergiodj+buildbot
@ 2018-01-15 22:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-15 22:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	5429afd6529f3a7dc7d733fc21053ca3ecadd033

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Fix scm-ports.exp regression

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/54/5429afd6529f3a7dc7d733fc21053ca3ecadd033/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-12 21:42 [binutils-gdb/gdb-8.1-branch] Add testcase for GDB hang fixed by previous commit sergiodj+buildbot
@ 2018-01-12 22:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-12 22:17 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/8557>

Commit(s) tested:
	1d17025506de70cb1d9d5b7a5654e40ce689bf26

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

Subject:
	Add testcase for GDB hang fixed by previous commit

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/1d/1d17025506de70cb1d9d5b7a5654e40ce689bf26/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/amd64-disp-step-avx.exp: vex2: xmm0 has expected value before
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-12 20:43 [binutils-gdb/gdb-8.1-branch] Fix GDB hang with remote after error from resume sergiodj+buildbot
@ 2018-01-12 21:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-12 21:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	a09f837ae221977eec50cc2ded12bd765b3b634a

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

Subject:
	Fix GDB hang with remote after error from resume

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/a0/a09f837ae221977eec50cc2ded12bd765b3b634a/>

*** Diff to previous build ***
============================
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-12  6:37 [binutils-gdb/gdb-8.1-branch] Bump GDB version number to 8.0.91.DATE-git sergiodj+buildbot
@ 2018-01-12  7:14 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-12  7:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

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

Commit(s) tested:
	4d8dd3e16837698b48447531c8e74796d702135c

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

Subject:
	Bump GDB version number to 8.0.91.DATE-git.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/4d/4d8dd3e16837698b48447531c8e74796d702135c/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-12  5:53 [binutils-gdb/gdb-8.1-branch] Set GDB version number to 8.0.91 sergiodj+buildbot
@ 2018-01-12  6:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-12  6:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	556dbf30fb0d5d6f59c7b38f2ac930cc6f9589eb

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

Subject:
	Set GDB version number to 8.0.91.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/55/556dbf30fb0d5d6f59c7b38f2ac930cc6f9589eb/>

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


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-12  5:00 [binutils-gdb/gdb-8.1-branch] gdb/NEWS: Rename "Changes since 8.0" into "Changes in 8.1" sergiodj+buildbot
@ 2018-01-12  5:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-12  5:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	93935fd4e30036cb2d549ac0b5568efa495237c4

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

Subject:
	gdb/NEWS: Rename "Changes since 8.0" into "Changes in 8.1".

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/93/93935fd4e30036cb2d549ac0b5568efa495237c4/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-11 19:39 [binutils-gdb/gdb-8.1-branch] gdb.base/breakpoint-in-ro-region.exp regression on sss targets (PR gdb/22583) sergiodj+buildbot
@ 2018-01-11 20:06 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11 20:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	f740fa5094817e948853bbcba46410a05175260d

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

Subject:
	gdb.base/breakpoint-in-ro-region.exp regression on sss targets (PR gdb/22583)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/f7/f740fa5094817e948853bbcba46410a05175260d/>

*** Diff to previous build ***
============================
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-11  7:05 [binutils-gdb/gdb-8.1-branch] Fix backwards compatibility with old GDBservers (PR remote/22597) sergiodj+buildbot
@ 2018-01-11  7:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  7:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	936a312c04f9f1dd856571bf7573b5a8f51ed895

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

Subject:
	Fix backwards compatibility with old GDBservers (PR remote/22597)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/93/936a312c04f9f1dd856571bf7573b5a8f51ed895/>

*** Diff to previous build ***
============================
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-11  5:03 [binutils-gdb/gdb-8.1-branch] language_get_symbol_name_matcher -> get_symbol_name_matcher sergiodj+buildbot
@ 2018-01-11  5:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  5:20 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/8534>

Commit(s) tested:
	a3dc9ae700a0f74bb1781be6334cfab04cf93caf

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

Subject:
	language_get_symbol_name_matcher -> get_symbol_name_matcher

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/a3/a3dc9ae700a0f74bb1781be6334cfab04cf93caf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/amd64-disp-step-avx.exp: vex2: xmm0 has expected value before
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-11  3:20 [binutils-gdb/gdb-8.1-branch] Fix gdb.ada/complete.exp's "complete break ada" test (PR gdb/22670) sergiodj+buildbot
@ 2018-01-11  4:00 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  4:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	be1f9aabab1be45e324ae4cd30e7b08cb7e6c083

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

Subject:
	Fix gdb.ada/complete.exp's "complete break ada" test (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/be/be1f9aabab1be45e324ae4cd30e7b08cb7e6c083/>

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


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-11  2:27 [binutils-gdb/gdb-8.1-branch] Fix gdb.ada/bp_c_mixed_case.exp (PR gdb/22670) sergiodj+buildbot
@ 2018-01-11  2:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-11  2:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	bd140f1f5ef06b801156c787331f2d3ad72320a1

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

Subject:
	Fix gdb.ada/bp_c_mixed_case.exp (PR gdb/22670)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/bd/bd140f1f5ef06b801156c787331f2d3ad72320a1/>

*** Diff to previous build ***
============================
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
============================


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch
  2018-01-08 12:27 [binutils-gdb/gdb-8.1-branch] Fix GDBserver build failure when $development is false sergiodj+buildbot
@ 2018-01-08 12:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 49+ messages in thread
From: sergiodj+buildbot @ 2018-01-08 12:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	f464485579f8e0a22e87aaa568b7ed4b3ec13ee3

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

Subject:
	Fix GDBserver build failure when $development is false

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/f4/f464485579f8e0a22e87aaa568b7ed4b3ec13ee3/>

*** Diff to previous build ***
============================
KFAIL -> KPASS: gdb.ada/maint_with_ada.exp: maintenance check-psymtabs
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
============================


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

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




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

end of thread, other threads:[~2018-07-31 21:07 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-11  4:10 [binutils-gdb/gdb-8.1-branch] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
2018-01-11  4:10 ` Failures on Fedora-x86_64-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-11  4:17 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
2018-01-11  4:19 ` Failures on Fedora-i686, " sergiodj+buildbot
2018-01-11  4:24 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
2018-01-11  4:31 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
2018-01-11  4:35 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
2018-01-11  4:40 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2018-01-11  7:32 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
2018-01-11  8:09 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
2018-01-11 11:13 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
2018-01-11 11:44 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
2018-01-11 12:14 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
  -- strict thread matches above, loose matches on Subject: below --
2018-07-31 15:51 [binutils-gdb/gdb-8.1-branch] Bump GDB version number to 8.1.1.DATE-git sergiodj+buildbot
2018-07-31 21:07 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-07-31 15:37 [binutils-gdb/gdb-8.1-branch] Set GDB version number to 8.1.1 sergiodj+buildbot
2018-07-31 20:24 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-06-09 17:45 [binutils-gdb/gdb-8.1-branch] Fix build issue with Python 3.7 sergiodj+buildbot
2018-06-11 21:18 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-05-31  4:02 [binutils-gdb/gdb-8.1-branch] Unset gdbarch significant_addr_bit by default sergiodj+buildbot
2018-06-08 16:38 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-05-10 19:22 [binutils-gdb/gdb-8.1-branch] gdbserver/Windows: Fix "no program to debug" error sergiodj+buildbot
2018-05-11 17:22 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-05-10 19:11 [binutils-gdb/gdb-8.1-branch] [gdbserver/win32] fatal "glob could not process pattern '(null)'" error sergiodj+buildbot
2018-05-11 12:53 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-05-10 12:45 [binutils-gdb/gdb-8.1-branch] Fix tagged pointer support sergiodj+buildbot
2018-05-10 18:50 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-04-12 21:16 [binutils-gdb/gdb-8.1-branch] Fix -D_GLIBCXX_DEBUG gdb-add-index regression sergiodj+buildbot
2018-04-12 22:01 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-04-04 16:12 [binutils-gdb/gdb-8.1-branch] i386: Clear vex instead of vex.evex sergiodj+buildbot
2018-04-04 16:40 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-03-02 12:58 [binutils-gdb/gdb-8.1-branch] Conditionally include "<windows.h>" on common/pathstuff.c (and unbreak build on mingw*) sergiodj+buildbot
2018-03-02 14:35 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-03-01  3:00 [binutils-gdb/gdb-8.1-branch] Change order of error message printed when gdbserver can't find CWD sergiodj+buildbot
2018-03-01  4:28 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-03-01  2:49 [binutils-gdb/gdb-8.1-branch] Make gdbserver work with filename-only binaries sergiodj+buildbot
2018-03-01  3:48 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-03-01  2:36 [binutils-gdb/gdb-8.1-branch] Create new common/pathstuff.[ch] sergiodj+buildbot
2018-03-01  3:01 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-02-09 12:51 [binutils-gdb/gdb-8.1-branch] gdb/NEWS: Clarify the news entry for "rbreak" in GDB 8.1 sergiodj+buildbot
2018-02-09 13:42 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-31  3:31 [binutils-gdb/gdb-8.1-branch] Bump GDB version number to 8.1.0.DATE-git sergiodj+buildbot
2018-01-31  5:10 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-31  3:17 [binutils-gdb/gdb-8.1-branch] Set GDB version number to 8.1 sergiodj+buildbot
2018-01-31  4:28 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-27 17:20 [binutils-gdb/gdb-8.1-branch] Avoid compilation errors in MinGW native builds of GDB sergiodj+buildbot
2018-01-27 19:40 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-27 16:54 [binutils-gdb/gdb-8.1-branch] Avoid compilation warning in libiberty/simple-object-xcoff.c sergiodj+buildbot
2018-01-27 18:03 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-24 19:02 [binutils-gdb/gdb-8.1-branch] Fix GCC PR83906 - [8 Regression] Random FAIL: libstdc++-prettyprinters/80276.cc whatis p4 sergiodj+buildbot
2018-01-24 20:27 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-22 21:38 [binutils-gdb/gdb-8.1-branch] MAINTAINERS: Update my company e-mail address sergiodj+buildbot
2018-01-22 22:03 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-18  0:02 [binutils-gdb/gdb-8.1-branch] Fix warning on gdb/compile/compile.c (C++-ify "triplet_rx") sergiodj+buildbot
2018-01-18  2:37 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-17 14:00 [binutils-gdb/gdb-8.1-branch] configure: Fix test for fs_base/gs_base in <sys/user.h> sergiodj+buildbot
2018-01-17 16:19 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-17 13:36 [binutils-gdb/gdb-8.1-branch] Don't pass -m64 to libcc1 on aarch64-linux sergiodj+buildbot
2018-01-17 14:48 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-17 11:59 [binutils-gdb/gdb-8.1-branch] Relax gdb.compile/compile.exp to match the address printed for frame sergiodj+buildbot
2018-01-17 13:04 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-15 22:32 [binutils-gdb/gdb-8.1-branch] Fix scm-ports.exp regression sergiodj+buildbot
2018-01-15 22:55 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-12 21:42 [binutils-gdb/gdb-8.1-branch] Add testcase for GDB hang fixed by previous commit sergiodj+buildbot
2018-01-12 22:17 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-12 20:43 [binutils-gdb/gdb-8.1-branch] Fix GDB hang with remote after error from resume sergiodj+buildbot
2018-01-12 21:24 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-12  6:37 [binutils-gdb/gdb-8.1-branch] Bump GDB version number to 8.0.91.DATE-git sergiodj+buildbot
2018-01-12  7:14 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-12  5:53 [binutils-gdb/gdb-8.1-branch] Set GDB version number to 8.0.91 sergiodj+buildbot
2018-01-12  6:23 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-12  5:00 [binutils-gdb/gdb-8.1-branch] gdb/NEWS: Rename "Changes since 8.0" into "Changes in 8.1" sergiodj+buildbot
2018-01-12  5:37 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-11 19:39 [binutils-gdb/gdb-8.1-branch] gdb.base/breakpoint-in-ro-region.exp regression on sss targets (PR gdb/22583) sergiodj+buildbot
2018-01-11 20:06 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-11  7:05 [binutils-gdb/gdb-8.1-branch] Fix backwards compatibility with old GDBservers (PR remote/22597) sergiodj+buildbot
2018-01-11  7:46 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-11  5:03 [binutils-gdb/gdb-8.1-branch] language_get_symbol_name_matcher -> get_symbol_name_matcher sergiodj+buildbot
2018-01-11  5:20 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-11  3:20 [binutils-gdb/gdb-8.1-branch] Fix gdb.ada/complete.exp's "complete break ada" test (PR gdb/22670) sergiodj+buildbot
2018-01-11  4:00 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-11  2:27 [binutils-gdb/gdb-8.1-branch] Fix gdb.ada/bp_c_mixed_case.exp (PR gdb/22670) sergiodj+buildbot
2018-01-11  2:54 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch sergiodj+buildbot
2018-01-08 12:27 [binutils-gdb/gdb-8.1-branch] Fix GDBserver build failure when $development is false sergiodj+buildbot
2018-01-08 12:52 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.1-branch 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).