public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Fedora-i686, branch master
2017-11-22 1:10 [binutils-gdb] problem debugging ravenscar programs if runtime is stripped sergiodj+buildbot
@ 2017-11-22 1:10 ` sergiodj+buildbot
2017-11-22 1:11 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
` (9 subsequent siblings)
10 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 1:10 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-2
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-i686/builds/8073>
Commit(s) tested:
cf3fbed4a00e668ffcad1b878eccec87334fdcff
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
problem debugging ravenscar programs if runtime is stripped
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-i686/cf/cf3fbed4a00e668ffcad1b878eccec87334fdcff/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-i686/xfails/master/xfail;hb=4a17cb2>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-i686/xfails/master/xfail.table;hb=4a17cb2>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* [binutils-gdb] problem debugging ravenscar programs if runtime is stripped
@ 2017-11-22 1:10 sergiodj+buildbot
2017-11-22 1:10 ` Failures on Fedora-i686, branch master sergiodj+buildbot
` (10 more replies)
0 siblings, 11 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 1:10 UTC (permalink / raw)
To: gdb-testers
*** TEST RESULTS FOR COMMIT cf3fbed4a00e668ffcad1b878eccec87334fdcff ***
Author: Joel Brobecker <brobecker@adacore.com>
Branch: master
Commit: cf3fbed4a00e668ffcad1b878eccec87334fdcff
problem debugging ravenscar programs if runtime is stripped
Trying to debug a program using a stripped version of the ravenscar
runtime, we can get the following error:
(gdb) cont
Continuing.
Cannot find Ada_Task_Control_Block type. Aborting
This is because the ravenscar-thread layer makes the assumption that
the runtime is built the way we expect it, meaning that the Ada tasking
units we rely on for Ada tasking debugging, are built with debugging
information, and that this debug information has not been stripped from
the runtime.
When this assumption is not true, resuming such a program can trigger
the error above, which then leads GDB a little confused. For instance,
we can see things like:
(gdb) bt
Target is executing.
This patch fixes the issue by disabling the ravenscar thread layer
if we detect that the runtime is missing some of the debugging info
we need in order to support Ada task debugging. This is the best
we can do, as the ravenscar-thread layer actually depends on the
ada-tasks layer to implement thread debugging.
gdb/ChangeLog:
* ada-lang.h (ada_get_tcb_types_info): Add declaration.
* ada-tasks.c (ada_get_tcb_types_info): Renames get_tcb_types_info.
Make non-static. Change return type to char *. Adjust code
accordingly. Rewrite the function's documentation.
(read_atcb): Adjust call to get_tcb_types_info accordingly.
* ravenscar-thread.c (ravenscar_inferior_created): Check that
we have enough debugging information in the runtime to support
Ada task debugging before we enable the ravenscar-thread layer.
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
2017-11-22 1:10 [binutils-gdb] problem debugging ravenscar programs if runtime is stripped sergiodj+buildbot
2017-11-22 1:10 ` Failures on Fedora-i686, branch master sergiodj+buildbot
@ 2017-11-22 1:11 ` sergiodj+buildbot
2017-11-22 1:13 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
` (8 subsequent siblings)
10 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 1:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/8035>
Commit(s) tested:
cf3fbed4a00e668ffcad1b878eccec87334fdcff
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
problem debugging ravenscar programs if runtime is stripped
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/cf/cf3fbed4a00e668ffcad1b878eccec87334fdcff/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/corefile.exp: core-file warning-free
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-gdbserver-m32/xfails/master/xfail;hb=18b3ca2>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-gdbserver-m32/xfails/master/xfail.table;hb=18b3ca2>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Fedora-x86_64-m32, branch master
2017-11-22 1:10 [binutils-gdb] problem debugging ravenscar programs if runtime is stripped sergiodj+buildbot
2017-11-22 1:10 ` Failures on Fedora-i686, branch master sergiodj+buildbot
2017-11-22 1:11 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
@ 2017-11-22 1:13 ` sergiodj+buildbot
2017-11-22 1:16 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
` (7 subsequent siblings)
10 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 1:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-4
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-m32/builds/8050>
Commit(s) tested:
cf3fbed4a00e668ffcad1b878eccec87334fdcff
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
problem debugging ravenscar programs if runtime is stripped
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-m32/cf/cf3fbed4a00e668ffcad1b878eccec87334fdcff/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-m32/xfails/master/xfail;hb=47d5b32>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-m32/xfails/master/xfail.table;hb=47d5b32>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Fedora-x86_64-m64, branch master
2017-11-22 1:10 [binutils-gdb] problem debugging ravenscar programs if runtime is stripped sergiodj+buildbot
` (2 preceding siblings ...)
2017-11-22 1:13 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
@ 2017-11-22 1:16 ` sergiodj+buildbot
2017-11-22 1:33 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
` (6 subsequent siblings)
10 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 1:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-3
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-m64/builds/8091>
Commit(s) tested:
cf3fbed4a00e668ffcad1b878eccec87334fdcff
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
problem debugging ravenscar programs if runtime is stripped
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-m64/cf/cf3fbed4a00e668ffcad1b878eccec87334fdcff/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-m64/xfails/master/xfail;hb=f7c5eef>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-m64/xfails/master/xfail.table;hb=f7c5eef>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
2017-11-22 1:10 [binutils-gdb] problem debugging ravenscar programs if runtime is stripped sergiodj+buildbot
` (4 preceding siblings ...)
2017-11-22 1:33 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2017-11-22 1:33 ` sergiodj+buildbot
2017-11-22 1:35 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
` (4 subsequent siblings)
10 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 1:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-2
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-extended-gdbserver-m32/builds/8039>
Commit(s) tested:
cf3fbed4a00e668ffcad1b878eccec87334fdcff
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
problem debugging ravenscar programs if runtime is stripped
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m32/cf/cf3fbed4a00e668ffcad1b878eccec87334fdcff/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/corefile.exp: core-file warning-free
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-extended-gdbserver-m32/xfails/master/xfail;hb=aa4d0c3>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-extended-gdbserver-m32/xfails/master/xfail.table;hb=aa4d0c3>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
2017-11-22 1:10 [binutils-gdb] problem debugging ravenscar programs if runtime is stripped sergiodj+buildbot
` (3 preceding siblings ...)
2017-11-22 1:16 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
@ 2017-11-22 1:33 ` sergiodj+buildbot
2017-11-22 1:33 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
` (5 subsequent siblings)
10 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 1:33 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/8077>
Commit(s) tested:
cf3fbed4a00e668ffcad1b878eccec87334fdcff
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
problem debugging ravenscar programs if runtime is stripped
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/cf/cf3fbed4a00e668ffcad1b878eccec87334fdcff/>
*** 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-extended-gdbserver-m64/xfails/master/xfail;hb=93fa61b>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-extended-gdbserver-m64/xfails/master/xfail.table;hb=93fa61b>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
2017-11-22 1:10 [binutils-gdb] problem debugging ravenscar programs if runtime is stripped sergiodj+buildbot
` (5 preceding siblings ...)
2017-11-22 1:33 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2017-11-22 1:35 ` sergiodj+buildbot
2017-11-22 2:49 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
` (3 subsequent siblings)
10 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 1:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-3
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m64/builds/8032>
Commit(s) tested:
cf3fbed4a00e668ffcad1b878eccec87334fdcff
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
problem debugging ravenscar programs if runtime is stripped
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m64/cf/cf3fbed4a00e668ffcad1b878eccec87334fdcff/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-gdbserver-m64/xfails/master/xfail;hb=80312fe>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-gdbserver-m64/xfails/master/xfail.table;hb=80312fe>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch64-m64, branch master
2017-11-22 1:10 [binutils-gdb] problem debugging ravenscar programs if runtime is stripped sergiodj+buildbot
` (6 preceding siblings ...)
2017-11-22 1:35 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
@ 2017-11-22 2:49 ` sergiodj+buildbot
2017-11-22 2:51 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
` (2 subsequent siblings)
10 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 2:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-aarch64-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch64-m64/builds/3564>
Commit(s) tested:
cf3fbed4a00e668ffcad1b878eccec87334fdcff
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
problem debugging ravenscar programs if runtime is stripped
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch64-m64/cf/cf3fbed4a00e668ffcad1b878eccec87334fdcff/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch64-m64/xfails/master/xfail;hb=2289e31>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch64-m64/xfails/master/xfail.table;hb=2289e31>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, branch master
2017-11-22 1:10 [binutils-gdb] problem debugging ravenscar programs if runtime is stripped sergiodj+buildbot
` (7 preceding siblings ...)
2017-11-22 2:49 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
@ 2017-11-22 2:51 ` sergiodj+buildbot
2017-11-22 3:19 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
2017-11-22 4:01 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
10 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 2:51 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/2157>
Commit(s) tested:
cf3fbed4a00e668ffcad1b878eccec87334fdcff
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
problem debugging ravenscar programs if runtime is stripped
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-native-extended-gdbserver-m32/cf/cf3fbed4a00e668ffcad1b878eccec87334fdcff/>
*** Diff to previous build ***
============================
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=10: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=11: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=13: 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] 2089+ messages in thread
* Failures on Ubuntu-AArch32-native-gdbserver-m32, branch master
2017-11-22 1:10 [binutils-gdb] problem debugging ravenscar programs if runtime is stripped sergiodj+buildbot
` (8 preceding siblings ...)
2017-11-22 2:51 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2017-11-22 3:19 ` sergiodj+buildbot
2017-11-22 4:01 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
10 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 3:19 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/2139>
Commit(s) tested:
cf3fbed4a00e668ffcad1b878eccec87334fdcff
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
problem debugging ravenscar programs if runtime is stripped
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-native-gdbserver-m32/cf/cf3fbed4a00e668ffcad1b878eccec87334fdcff/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-native-gdbserver-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-native-gdbserver-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 1:10 [binutils-gdb] problem debugging ravenscar programs if runtime is stripped sergiodj+buildbot
` (9 preceding siblings ...)
2017-11-22 3:19 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
@ 2017-11-22 4:01 ` sergiodj+buildbot
10 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 4:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2158>
Commit(s) tested:
cf3fbed4a00e668ffcad1b878eccec87334fdcff
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
problem debugging ravenscar programs if runtime is stripped
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cf/cf3fbed4a00e668ffcad1b878eccec87334fdcff/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-30 20:37 [binutils-gdb] Remove regcache_register_status sergiodj+buildbot
@ 2018-09-23 15:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-09-23 15:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3680>
Commit(s) tested:
0ec9f11447514a797ae13760825fa45f9deedd8c
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove regcache_register_status
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0e/0ec9f11447514a797ae13760825fa45f9deedd8c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-30 16:17 [binutils-gdb] 2018-05-30 Amaan Cheval <amaan.cheval@gmail.com> sergiodj+buildbot
@ 2018-09-19 22:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-09-19 22:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3677>
Commit(s) tested:
421acf18739edb54111b64d2b328ea2e7bf19889
Author(s) (in the same order as the commits):
Amaan Cheval <amaan.cheval@gmail.com>
Subject:
2018-05-30 Amaan Cheval <amaan.cheval@gmail.com>
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/42/421acf18739edb54111b64d2b328ea2e7bf19889/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-30 8:52 [binutils-gdb] Add znver2 support sergiodj+buildbot
@ 2018-09-18 23:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-09-18 23:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3675>
Commit(s) tested:
a9660a6f4063c7e1fb892ec709c954c56896ab8d
Author(s) (in the same order as the commits):
Amit Pawar <Amit.Pawar@amd.com>
Subject:
Add znver2 support.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a9/a9660a6f4063c7e1fb892ec709c954c56896ab8d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-26 17:55 [binutils-gdb] Remove interp_ui_out sergiodj+buildbot
@ 2018-09-13 12:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-09-13 12:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3658>
Commit(s) tested:
29f943408122a7cffa25abb41def99833436f097
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove interp_ui_out
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/29/29f943408122a7cffa25abb41def99833436f097/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-25 17:20 [binutils-gdb] Remove cleanups from coff-pe-read.c sergiodj+buildbot
@ 2018-09-10 23:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-09-10 23:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3653>
Commit(s) tested:
3173aa2fc212389268f76433e70b35116a936a8d
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanups from coff-pe-read.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/31/3173aa2fc212389268f76433e70b35116a936a8d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-25 12:40 [binutils-gdb] MIPS/Linux: Correct o32 core file FGR interpretation sergiodj+buildbot
@ 2018-09-09 21:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-09-09 21:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3651>
Commit(s) tested:
d8dab6c3bbe6432ff20237e621f2f3a3d30d4d4b
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
MIPS/Linux: Correct o32 core file FGR interpretation
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d8/d8dab6c3bbe6432ff20237e621f2f3a3d30d4d4b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-25 0:21 [binutils-gdb] Update help text in record.c sergiodj+buildbot
@ 2018-09-08 0:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-09-08 0:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3645>
Commit(s) tested:
a974b5ec9a253d330290d132098065b77f29bd36
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Update help text in record.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a9/a974b5ec9a253d330290d132098065b77f29bd36/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-24 21:10 [binutils-gdb] Update help strings in TUI sergiodj+buildbot
@ 2018-09-04 17:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-09-04 17:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3638>
Commit(s) tested:
bf212be198a7dd7700e08862f241ed85f88408e3
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Update help strings in TUI
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bf/bf212be198a7dd7700e08862f241ed85f88408e3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-24 20:12 [binutils-gdb] Update core-related help strings sergiodj+buildbot
@ 2018-09-04 11:08 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-09-04 11:08 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3636>
Commit(s) tested:
0cab2f1e91f92130c5e0d89a99ce639ebd8ec1b0
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Update core-related help strings
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0c/0cab2f1e91f92130c5e0d89a99ce639ebd8ec1b0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-25 12:19 [binutils-gdb] Fix help and documentation for inferior commands sergiodj+buildbot
@ 2018-09-02 20:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-09-02 20:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3633>
Commit(s) tested:
a3c25011e4b0519dca984d23a8a2843b92b9ce2c
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Fix help and documentation for inferior commands
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a3/a3c25011e4b0519dca984d23a8a2843b92b9ce2c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-23 19:22 [binutils-gdb] Remove file and line from struct complain sergiodj+buildbot
@ 2018-08-24 3:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-08-24 3:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3609>
Commit(s) tested:
7ff8817441fcebe3d32343dbd9d514366bfe8e23
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove file and line from struct complain
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7f/7ff8817441fcebe3d32343dbd9d514366bfe8e23/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-23 3:06 [binutils-gdb] Fix gdb.base/remote.exp with native-extended-gdbserver board sergiodj+buildbot
@ 2018-08-18 2:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-08-18 2:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3596>
Commit(s) tested:
035522c0228be33b2124ada2f178187e7e53aa6c
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix gdb.base/remote.exp with native-extended-gdbserver board
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/03/035522c0228be33b2124ada2f178187e7e53aa6c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-23 2:03 [binutils-gdb] gdb/x86: Fix `-Wstrict-overflow' build error in `i387_collect_xsave' sergiodj+buildbot
@ 2018-08-17 15:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-08-17 15:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3595>
Commit(s) tested:
35f1fea3fcd44546a6cf074029c284c64ad25b3c
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
gdb/x86: Fix `-Wstrict-overflow' build error in `i387_collect_xsave'
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/35/35f1fea3fcd44546a6cf074029c284c64ad25b3c/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-23 2:22 [binutils-gdb] remote: Make vcont_builder a class sergiodj+buildbot
@ 2018-08-16 8:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-08-16 8:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3592>
Commit(s) tested:
f5db4863f51b83bc6b54504d61e1731011cfdec2
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
remote: Make vcont_builder a class
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f5/f5db4863f51b83bc6b54504d61e1731011cfdec2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-22 17:34 [binutils-gdb] [PowerPC] Fix access to VSCR in linux targets sergiodj+buildbot
@ 2018-08-08 8:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-08-08 8:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3573>
Commit(s) tested:
1d75a65809b49d41e97518b99c551a4bb2517500
Author(s) (in the same order as the commits):
Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
Subject:
[PowerPC] Fix access to VSCR in linux targets
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1d/1d75a65809b49d41e97518b99c551a4bb2517500/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-22 15:57 [binutils-gdb] [PowerPC] Consolidate linux target description selection sergiodj+buildbot
@ 2018-08-06 5:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-08-06 5:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3566>
Commit(s) tested:
bd64614eb737096f40b976fb505ddd42e7f1614c
Author(s) (in the same order as the commits):
Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
Subject:
[PowerPC] Consolidate linux target description selection
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bd/bd64614eb737096f40b976fb505ddd42e7f1614c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-22 6:36 [binutils-gdb] PR23207, hppa ld SIGSEGVs on invalid object files sergiodj+buildbot
@ 2018-08-04 13:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-08-04 13:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3562>
Commit(s) tested:
7455c018e45766ab7193cbd45f98f781e0dc7d84
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR23207, hppa ld SIGSEGVs on invalid object files
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/74/7455c018e45766ab7193cbd45f98f781e0dc7d84/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:63
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-21 20:19 [binutils-gdb] Change ada_catchpoint::excep_string to be a std::string sergiodj+buildbot
@ 2018-07-30 13:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-07-30 13:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3550>
Commit(s) tested:
bc18fbb575437dd10089ef4619e46c0b9a93097d
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change ada_catchpoint::excep_string to be a std::string
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bc/bc18fbb575437dd10089ef4619e46c0b9a93097d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-21 17:46 [binutils-gdb] Use std::string in reread_symbols sergiodj+buildbot
@ 2018-07-28 20:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-07-28 20:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3546>
Commit(s) tested:
c0c9f665d9d4cdcef59cc7951396d843a7ea6a48
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use std::string in reread_symbols
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c0/c0c9f665d9d4cdcef59cc7951396d843a7ea6a48/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-21 3:57 [binutils-gdb] Fix copy-pasto, allocate objfile_per_bfd_storage with obstack_new sergiodj+buildbot
@ 2018-07-27 22:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-07-27 22: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/3543>
Commit(s) tested:
184cde7552b5434196b8380be23b39ff4a5a17e6
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Fix copy-pasto, allocate objfile_per_bfd_storage with obstack_new
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/18/184cde7552b5434196b8380be23b39ff4a5a17e6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-21 1:51 [binutils-gdb] Introduce obstack_new, poison other "typed" obstack functions sergiodj+buildbot
@ 2018-07-27 1:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-07-27 1:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3541>
Commit(s) tested:
284a0e3cbffa92ee5c94065fcdd5a528482344fc
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Introduce obstack_new, poison other "typed" obstack functions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/28/284a0e3cbffa92ee5c94065fcdd5a528482344fc/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-19 7:33 [binutils-gdb] Fix reference in comment: SRC_AND_LOC instead of LOC_AND_SRC sergiodj+buildbot
@ 2018-07-26 4:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-07-26 4:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3538>
Commit(s) tested:
50c65c2d60b371b8b85a804a5a71bf967ba9b355
Author(s) (in the same order as the commits):
Philippe Waroquiers <philippe.waroquiers@skynet.be>
Subject:
Fix reference in comment: SRC_AND_LOC instead of LOC_AND_SRC
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/50/50c65c2d60b371b8b85a804a5a71bf967ba9b355/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-18 20:15 [binutils-gdb] Show padding in ptype/o output sergiodj+buildbot
@ 2018-07-15 6:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-07-15 6:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3511>
Commit(s) tested:
ce1e8424c69793139ec8d2a60c4a21ab136ae9e0
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Show padding in ptype/o output
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ce/ce1e8424c69793139ec8d2a60c4a21ab136ae9e0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-18 15:27 [binutils-gdb] Add support for the Freescale s12z processor sergiodj+buildbot
@ 2018-07-14 19:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-07-14 19:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3510>
Commit(s) tested:
7b4ae824289504c173a597e86a00ceab452095b7
Author(s) (in the same order as the commits):
John Darrington <john@darrington.wattle.id.au>
Subject:
Add support for the Freescale s12z processor.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7b/7b4ae824289504c173a597e86a00ceab452095b7/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-17 15:55 [binutils-gdb] Updated simplified Chinese translation for the opcodes directory sergiodj+buildbot
@ 2018-07-07 9:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-07-07 9:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3490>
Commit(s) tested:
809276d28ad0212dd5a3f9074090e1425e5e4d8e
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Updated simplified Chinese translation for the opcodes directory.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/80/809276d28ad0212dd5a3f9074090e1425e5e4d8e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-17 15:50 [binutils-gdb] value.c: Remove unused variables sergiodj+buildbot
@ 2018-07-06 23:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-07-06 23:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3489>
Commit(s) tested:
3e6188349fbf16e9da69837e5e1211537805e422
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
value.c: Remove unused variables
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3e/3e6188349fbf16e9da69837e5e1211537805e422/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-16 13:10 [binutils-gdb] PR22458, failure to choose a matching ELF target sergiodj+buildbot
@ 2018-07-01 21:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-07-01 21:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3475>
Commit(s) tested:
7cf7fcc83ca9fb4c4b591b3142bcf12e6e8a2aa5
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22458, failure to choose a matching ELF target
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7c/7cf7fcc83ca9fb4c4b591b3142bcf12e6e8a2aa5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-15 17:55 [binutils-gdb] MIPS: Make `mask_address_var' static sergiodj+buildbot
@ 2018-06-29 11:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-29 11:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3469>
Commit(s) tested:
ea33cd9290063d977fb2c31ea6a8567da585ab88
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
MIPS: Make `mask_address_var' static
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ea/ea33cd9290063d977fb2c31ea6a8567da585ab88/>
*** Diff to previous build ***
============================
new UNRESOLVED: gdb.mi/mi-var-child-f.exp: create local variable array
new UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 23
new UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 24
new UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 27
new UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 30
new UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 31
new UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 36
new UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 37
new UNRESOLVED: gdb.mi/mi-vla-fortran.exp: run to breakpoint at line 42
new UNRESOLVED: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=run: continue
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-15 15:48 [binutils-gdb] testsuite: Fix a `server_pid' access crash in gdb.server/server-kill.exp sergiodj+buildbot
@ 2018-06-29 7:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-29 7:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3468>
Commit(s) tested:
0726fcc61a8b7c943de513ec598b2189c5f67715
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
testsuite: Fix a `server_pid' access crash in gdb.server/server-kill.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/07/0726fcc61a8b7c943de513ec598b2189c5f67715/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-11 21:20 [binutils-gdb] Eliminate the 'the_core_target' global sergiodj+buildbot
@ 2018-06-22 9:47 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-22 9:47 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3455>
Commit(s) tested:
451953fa440aa0ade02b652159155fae689483a3
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Eliminate the 'the_core_target' global
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/45/451953fa440aa0ade02b652159155fae689483a3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-11 17:54 [binutils-gdb] Remove cleanups from mdebugread.c sergiodj+buildbot
@ 2018-06-21 8:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-21 8:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3453>
Commit(s) tested:
633cf2548bcd3dafe297e21a1dd3574240280d48
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanups from mdebugread.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/63/633cf2548bcd3dafe297e21a1dd3574240280d48/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-10 20:54 [binutils-gdb] Fix the clang build sergiodj+buildbot
@ 2018-06-19 21:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-19 21:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3447>
Commit(s) tested:
1a34f210bb9389e58d93caf4384800934fc7113a
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Fix the clang build
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1a/1a34f210bb9389e58d93caf4384800934fc7113a/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:63
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-10 17:18 [binutils-gdb] gdbserver/Windows: Fix "no program to debug" error sergiodj+buildbot
@ 2018-06-18 14:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-18 14:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3444>
Commit(s) tested:
7dbac825b09f0847e608b50c80db816ef20d9315
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/Ubuntu-AArch32-m32/7d/7dbac825b09f0847e608b50c80db816ef20d9315/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-10 17:03 [binutils-gdb] [gdbserver/win32] fatal "glob could not process pattern '(null)'" error sergiodj+buildbot
@ 2018-06-18 7:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-18 7:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3443>
Commit(s) tested:
906994d9d50eb40dc89a5bf0830e15ed10938641
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/Ubuntu-AArch32-m32/90/906994d9d50eb40dc89a5bf0830e15ed10938641/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-10 12:28 [binutils-gdb] Add support for detecting Freescale S12Z binaries in readelf sergiodj+buildbot
@ 2018-06-16 22:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-16 22:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3439>
Commit(s) tested:
637b19704cf8325875de8df4f8b000197d261e3b
Author(s) (in the same order as the commits):
John Darrington <john@darrington.wattle.id.au>
Subject:
Add support for detecting Freescale S12Z binaries in readelf.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/63/637b19704cf8325875de8df4f8b000197d261e3b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-10 10:11 [binutils-gdb] Fix tagged pointer support sergiodj+buildbot
@ 2018-06-16 21:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-16 21:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3438>
Commit(s) tested:
8727de56b0dbe25b7b4a3bd04f72ac41992463ed
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/Ubuntu-AArch32-m32/87/8727de56b0dbe25b7b4a3bd04f72ac41992463ed/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
PASS -> FAIL: gdb.base/gcore.exp: where in corefile
new FAIL: gdb.base/gcore.exp: capture_command_output for print array_func::local_array
PASS -> FAIL: gdb.base/gcore.exp: corefile restored stack array
PASS -> FAIL: gdb.base/gcore.exp: corefile restored backtrace
new FAIL: gdb.base/gcore-relro-pie.exp: can't run to break_here
new FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_parent: can't run to main
PASS -> FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_parent: continue
new FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_child: can't run to main
PASS -> FAIL: gdb.base/pie-fork.exp: test_detach_on_fork_follow_child: continue
new FAIL: gdb.base/pie-fork.exp: test_no_detach_on_fork: can't run to main
PASS -> FAIL: gdb.base/pie-fork.exp: test_no_detach_on_fork: continue
PASS -> FAIL: gdb.base/pie-fork.exp: test_no_detach_on_fork: thread 2.1
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : run to foo
new FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : continue until exit at second pass
PASS -> FAIL: gdb.base/solib-search.exp: backtrace
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.cp/annota2.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota2.exp: annotate-quit
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: watchpoint trigger
PASS -> FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: watchpoint trigger
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from void_func
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var reverse-step
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var step post-change
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step third shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step second shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step first shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step generic
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next third shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next second shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next first shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next generic
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: run until end part two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function two
PASS -> FAIL: gdb.reverse/step-precsave.exp: finish out of fn call
PASS -> FAIL: gdb.reverse/step-precsave.exp: simple stepi
PASS -> FAIL: gdb.reverse/step-precsave.exp: stepi back from function call
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/until-precsave.exp: advance to factorial
PASS -> FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function
PASS -> FAIL: gdb.reverse/until-precsave.exp: finish to main
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: replay forward to marker2
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fifth time
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-08 23:14 [binutils-gdb] RISC-V: Add missing hint instructions from RV128I sergiodj+buildbot
@ 2018-06-11 20:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-11 20:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3428>
Commit(s) tested:
e6f372ba661bb0d8eec1e22a6dc1ad9937336e4d
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
RISC-V: Add missing hint instructions from RV128I.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e6/e6f372ba661bb0d8eec1e22a6dc1ad9937336e4d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-08 17:40 [binutils-gdb] gdb/x86: Handle kernels using compact xsave format sergiodj+buildbot
@ 2018-06-10 2:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-10 2:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3422>
Commit(s) tested:
8ee22052f690c007556b97eed59f49350ece5ca9
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb/x86: Handle kernels using compact xsave format
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8e/8ee22052f690c007556b97eed59f49350ece5ca9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-08 13:27 [binutils-gdb] watchpoint-unaligned.exp: Use skip_hw_watchpoint_tests sergiodj+buildbot
@ 2018-06-07 9:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-07 9:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3406>
Commit(s) tested:
7785df4880f3828db8cf1715038127e6b858a670
Author(s) (in the same order as the commits):
Jan Kratochvil <jan.kratochvil@redhat.com>
Subject:
watchpoint-unaligned.exp: Use skip_hw_watchpoint_tests
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/77/7785df4880f3828db8cf1715038127e6b858a670/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-08 12:20 [binutils-gdb] Prevent a memory exhaustion failure when running objdump on a fuzzed input file with corrupt string and attribute sections sergiodj+buildbot
@ 2018-06-03 22:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-03 22:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3395>
Commit(s) tested:
95a6d23566165208853a68d9cd3c6eedca840ec6
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Prevent a memory exhaustion failure when running objdump on a fuzzed input file with corrupt string and attribute sections.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/95/95a6d23566165208853a68d9cd3c6eedca840ec6/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-08 2:10 [binutils-gdb] Simplify VLE handling in print_insn_powerpc() sergiodj+buildbot
@ 2018-06-03 12:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-06-03 12:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3394>
Commit(s) tested:
a87a64780fde9dc8d1c3af8eda93fc1b878cd3cf
Author(s) (in the same order as the commits):
Peter Bergner <bergner@vnet.ibm.com>
Subject:
Simplify VLE handling in print_insn_powerpc().
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a8/a87a64780fde9dc8d1c3af8eda93fc1b878cd3cf/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-07 15:27 [binutils-gdb] Fix decoding of ARM VFP instructions sergiodj+buildbot
@ 2018-05-21 16:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-21 16:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3367>
Commit(s) tested:
ce887586b48acd02080c36d5495891116f886e8e
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Fix decoding of ARM VFP instructions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ce/ce887586b48acd02080c36d5495891116f886e8e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-05 7:03 [binutils-gdb] Add fall-through comment to i386-tdep.c sergiodj+buildbot
@ 2018-05-11 22:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-11 22:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3342>
Commit(s) tested:
da0e15638de59238ad811cdc3cc1d1a7803829c7
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Add fall-through comment to i386-tdep.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/da/da0e15638de59238ad811cdc3cc1d1a7803829c7/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-05 4:33 [binutils-gdb] Fix "fall through" comments sergiodj+buildbot
@ 2018-05-10 7:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-10 7:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3338>
Commit(s) tested:
86a73007627a3c52d1c624ed430ac0e74fb8cc3e
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Fix "fall through" comments
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/86/86a73007627a3c52d1c624ed430ac0e74fb8cc3e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-05 1:14 [binutils-gdb] Use function_view in cli-script.c sergiodj+buildbot
@ 2018-05-08 21:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-08 21:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3335>
Commit(s) tested:
60b3cef2e49ba72dea55181a8ad0cb8dbf3f8a5b
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use function_view in cli-script.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/60/60b3cef2e49ba72dea55181a8ad0cb8dbf3f8a5b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-04 22:30 [binutils-gdb] aarch64: PR 19806: watchpoints: false negatives + PR 20207 contiguous ones sergiodj+buildbot
@ 2018-05-06 21:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-06 21:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3329>
Commit(s) tested:
a3b60e4588606354b93508a0008a5ca04b68fad8
Author(s) (in the same order as the commits):
Jan Kratochvil <jan.kratochvil@redhat.com>
Subject:
aarch64: PR 19806: watchpoints: false negatives + PR 20207 contiguous ones
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a3/a3b60e4588606354b93508a0008a5ca04b68fad8/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/watchpoint-unaligned.exp: wp
new FAIL: gdb.base/watchpoint-unaligned.exp: continue
new FAIL: gdb.base/watchpoint-unaligned.exp: delete 26
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size1[1]
new FAIL: gdb.base/watchpoint-unaligned.exp: set variable size = 2
new FAIL: gdb.base/watchpoint-unaligned.exp: set variable offset = 1
new FAIL: gdb.base/watchpoint-unaligned.exp: delete
new FAIL: gdb.base/watchpoint-unaligned.exp: set variable offset = 2
new FAIL: gdb.base/watchpoint-unaligned.exp: set variable offset = 3
new FAIL: gdb.base/watchpoint-unaligned.exp: set variable size = 4
new FAIL: gdb.base/watchpoint-unaligned.exp: set variable offset = 0
new FAIL: gdb.base/watchpoint-unaligned.exp: set variable size = 8
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size1[2]
new FAIL: gdb.base/watchpoint-unaligned.exp: set variable size = 1
new FAIL: gdb.base/watchpoint-unaligned.exp: set variable offset = 4
new FAIL: gdb.base/watchpoint-unaligned.exp: set variable offset = 5
new FAIL: gdb.base/watchpoint-unaligned.exp: set variable offset = 6
new FAIL: gdb.base/watchpoint-unaligned.exp: set variable offset = 7
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size1[3]
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size1[4]
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size1[5]
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size1[6]
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size1[7]
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size2[0]
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size2[1]
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size2[2]
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size2[3]
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size4[0]
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size4[1]
new FAIL: gdb.base/watchpoint-unaligned.exp: rwatch data.u.size8[0]
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-04 21:12 [binutils-gdb] (SPARC/LEON) fix incorrect array return value printed by "finish" sergiodj+buildbot
@ 2018-05-05 19:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-05 19:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3327>
Commit(s) tested:
05bc7456b872b81044d3b0e7c4d74c1de57217fd
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
(SPARC/LEON) fix incorrect array return value printed by "finish"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/05/05bc7456b872b81044d3b0e7c4d74c1de57217fd/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-04 20:13 [binutils-gdb] Remove do_closedir_cleanup sergiodj+buildbot
@ 2018-05-05 12:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-05 12:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3324>
Commit(s) tested:
f0b3976bdcd29e308bed185630a24806037a717c
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove do_closedir_cleanup
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f0/f0b3976bdcd29e308bed185630a24806037a717c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-04 14:14 [binutils-gdb] configure uses incorrect link order when testing libpython sergiodj+buildbot
@ 2018-05-04 18:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-04 18:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3316>
Commit(s) tested:
bf27f0e2c76839af8524e053cca271934150a90c
Author(s) (in the same order as the commits):
Paul Pluzhnikov <ppluzhnikov@google.com>
Subject:
configure uses incorrect link order when testing libpython
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bf/bf27f0e2c76839af8524e053cca271934150a90c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-03 21:34 [binutils-gdb] gdb/testsuite: Filter out some registers for riscv sergiodj+buildbot
@ 2018-05-04 5:08 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-04 5:08 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3311>
Commit(s) tested:
9b0797e268d96e8b46c328792aec3d6289585aa2
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb/testsuite: Filter out some registers for riscv
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9b/9b0797e268d96e8b46c328792aec3d6289585aa2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-03 2:54 [binutils-gdb] Eliminate target_ops::to_xclose sergiodj+buildbot
@ 2018-05-03 11:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-03 11:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3303>
Commit(s) tested:
3fffc0701a26bc0baa563fdc793cafb3d3f02a93
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Eliminate target_ops::to_xclose
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3f/3fffc0701a26bc0baa563fdc793cafb3d3f02a93/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-03 2:12 [binutils-gdb] Make inf_ptrace_trad Linux-only, move to separate file sergiodj+buildbot
@ 2018-05-03 9:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-03 9:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3302>
Commit(s) tested:
6798487f5bc66ab9c34ad81fa28ba25d32a00bd9
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Make inf_ptrace_trad Linux-only, move to separate file
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/67/6798487f5bc66ab9c34ad81fa28ba25d32a00bd9/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator-delete[]: cmd complete "b test_op_delete_array::operator delete "
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-03 0:37 [binutils-gdb] More procfs.c simplification sergiodj+buildbot
@ 2018-05-03 6:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-03 6:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3301>
Commit(s) tested:
c1955e179201e76330a10c400bfa92cab2afbee0
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
More procfs.c simplification
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c1/c1955e179201e76330a10c400bfa92cab2afbee0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-05-01 1:23 [binutils-gdb] Remove a use of is_mi_like_p from darwin-nat-info.c sergiodj+buildbot
@ 2018-05-02 12:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-02 12:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3292>
Commit(s) tested:
767619365467fd825c6f3906a49d97a7a6afafd6
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove a use of is_mi_like_p from darwin-nat-info.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/76/767619365467fd825c6f3906a49d97a7a6afafd6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-30 23:58 [binutils-gdb] Remove some uses of is_mi_like_p from spu-tdep.c sergiodj+buildbot
@ 2018-05-02 5:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-02 5:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3289>
Commit(s) tested:
40c03530b197d8d6ef550283ecd6684e8d49301b
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove some uses of is_mi_like_p from spu-tdep.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/40/40c03530b197d8d6ef550283ecd6684e8d49301b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-30 23:38 [binutils-gdb] Remove some uses of is_mi_like_p from py-framefilter.c sergiodj+buildbot
@ 2018-05-02 3:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-02 3:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3288>
Commit(s) tested:
2038b7fdf30c39bc4d528cc2e5fbf5403e0ba79e
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove some uses of is_mi_like_p from py-framefilter.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/20/2038b7fdf30c39bc4d528cc2e5fbf5403e0ba79e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-30 22:16 [binutils-gdb] Change Python code to use new_reference sergiodj+buildbot
@ 2018-05-01 22:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-01 22:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3286>
Commit(s) tested:
7c66fffc1f3dae0b921ae3cf8139824804cf0705
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change Python code to use new_reference
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7c/7c66fffc1f3dae0b921ae3cf8139824804cf0705/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-30 21:37 [binutils-gdb] Remove new_bfd_ref sergiodj+buildbot
@ 2018-05-01 17:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-01 17:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3284>
Commit(s) tested:
1831a9f9d3346dbf61202d2aba6935f0093487dd
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove new_bfd_ref
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/18/1831a9f9d3346dbf61202d2aba6935f0093487dd/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-30 21:46 [binutils-gdb] Introduce ref_ptr::new_reference sergiodj+buildbot
@ 2018-05-01 14:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-01 14:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3283>
Commit(s) tested:
7c1b5f3db73d7ecab03dc4e866e291582935fb04
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Introduce ref_ptr::new_reference
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7c/7c1b5f3db73d7ecab03dc4e866e291582935fb04/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-30 19:20 [binutils-gdb] Expose type alignment on gdb.Type sergiodj+buildbot
@ 2018-05-01 4:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-01 4:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3280>
Commit(s) tested:
6d7bb8246b3beaf60ea9c2abe183705e876519cd
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Expose type alignment on gdb.Type
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6d/6d7bb8246b3beaf60ea9c2abe183705e876519cd/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-30 18:19 [binutils-gdb] Handle alignof and _Alignof sergiodj+buildbot
@ 2018-05-01 1:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-05-01 1:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3279>
Commit(s) tested:
007e1530347330d4dbba387c4e35aae05bc06498
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Handle alignof and _Alignof
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/00/007e1530347330d4dbba387c4e35aae05bc06498/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-30 17:32 [binutils-gdb] Add initial type alignment support sergiodj+buildbot
@ 2018-04-30 23:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-30 23:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3278>
Commit(s) tested:
2b4424c35b9ebabaab8588b2ba6c38935a48efec
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Add initial type alignment support
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2b/2b4424c35b9ebabaab8588b2ba6c38935a48efec/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-thread_db.exp: continue to end
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-30 15:27 [binutils-gdb] Use bool in read_index_from_section sergiodj+buildbot
@ 2018-04-30 18:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-30 18:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3276>
Commit(s) tested:
d33bc52e51fdb6c464c1c8e8fdf9b2007b522b57
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Use bool in read_index_from_section
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d3/d33bc52e51fdb6c464c1c8e8fdf9b2007b522b57/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-29 16:52 [binutils-gdb] proc-events.c: fix compilation on Solaris sergiodj+buildbot
@ 2018-04-30 12:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-30 12:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3275>
Commit(s) tested:
e28b63a989caffa4a6fba1aaf0d8992b37d13da8
Author(s) (in the same order as the commits):
Fabian Groffen <grobian@gentoo.org>
Subject:
proc-events.c: fix compilation on Solaris
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e2/e28b63a989caffa4a6fba1aaf0d8992b37d13da8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-29 16:18 [binutils-gdb] Fix race when building ada-lex.c sergiodj+buildbot
@ 2018-04-30 6:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-30 6:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3274>
Commit(s) tested:
cd8c76e410a5f16a170cc680be1ae2ecb5528821
Author(s) (in the same order as the commits):
John Reiser <jreiser@BitWagon.com>
Subject:
Fix race when building ada-lex.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cd/cd8c76e410a5f16a170cc680be1ae2ecb5528821/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-27 20:09 [binutils-gdb] Add inclusive range support for Rust sergiodj+buildbot
@ 2018-04-29 20:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-29 20:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3271>
Commit(s) tested:
6873858b7e464e114f9a877e216949ad8350b4cf
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Add inclusive range support for Rust
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/68/6873858b7e464e114f9a877e216949ad8350b4cf/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-27 19:21 [binutils-gdb] Enable -Wsuggest-override sergiodj+buildbot
@ 2018-04-29 16:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-29 16:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3270>
Commit(s) tested:
632e107b32c0fe8aede62e070b00756e9fdd2c01
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Enable -Wsuggest-override
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/63/632e107b32c0fe8aede62e070b00756e9fdd2c01/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-27 13:09 [binutils-gdb] Revert "Enable Intel MOVDIRI, MOVDIR64B instructions." sergiodj+buildbot
@ 2018-04-29 14:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-29 14:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3269>
Commit(s) tested:
aa178437393fd97f706c3f8bdf60ab2cc53a8cb4
Author(s) (in the same order as the commits):
Igor Tsimbalist <igor.v.tsimbalist@intel.com>
Subject:
Revert "Enable Intel MOVDIRI, MOVDIR64B instructions."
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/aa/aa178437393fd97f706c3f8bdf60ab2cc53a8cb4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-27 11:12 [binutils-gdb] Regenerate some files for recent ARM patches sergiodj+buildbot
@ 2018-04-29 11:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-29 11:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3268>
Commit(s) tested:
ffa389a39655f4b35d583783e49fa5b31c288e8f
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Regenerate some files for recent ARM patches
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ff/ffa389a39655f4b35d583783e49fa5b31c288e8f/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/sigstep-threads.exp: step 4
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 23:25 [binutils-gdb] Fix remote 'g' command error handling (PR remote/9665) sergiodj+buildbot
@ 2018-04-29 5:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-29 5:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3266>
Commit(s) tested:
b75abf5bb636869fd893ecf98414b8b2fe0d4a12
Author(s) (in the same order as the commits):
Andrzej Kaczmarek <andrzej.kaczmarek@codecoup.pl>
Subject:
Fix remote 'g' command error handling (PR remote/9665)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b7/b75abf5bb636869fd893ecf98414b8b2fe0d4a12/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 22:02 [binutils-gdb] Enable Intel MOVDIRI, MOVDIR64B instructions sergiodj+buildbot
@ 2018-04-29 2:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-29 2:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3265>
Commit(s) tested:
a914a7c95895161c99533d5919b8504b37ea54a0
Author(s) (in the same order as the commits):
Igor Tsimbalist <igor.v.tsimbalist@intel.com>
Subject:
Enable Intel MOVDIRI, MOVDIR64B instructions.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a9/a914a7c95895161c99533d5919b8504b37ea54a0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 19:45 [binutils-gdb] Fix resolving GNU ifunc bp locations when inferior runs resolver sergiodj+buildbot
@ 2018-04-29 0:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-29 0:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3264>
Commit(s) tested:
79188d8d27a8885aee2ca4ff55238219a6aa7228
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix resolving GNU ifunc bp locations when inferior runs resolver
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/79/79188d8d27a8885aee2ca4ff55238219a6aa7228/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 18:42 [binutils-gdb] Extend GNU ifunc testcases sergiodj+buildbot
@ 2018-04-28 22:06 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-28 22:06 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3263>
Commit(s) tested:
c7075ad5030c4c2e79a04f3517689b751ff41860
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Extend GNU ifunc testcases
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c7/c7075ad5030c4c2e79a04f3517689b751ff41860/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 18:05 [binutils-gdb] PPC64: always make synthetic .text symbols for GNU ifunc symbols sergiodj+buildbot
@ 2018-04-28 19:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-28 19:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3262>
Commit(s) tested:
bfa5bd2ab31a8abb23cb442d51fe6c3836028880
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
PPC64: always make synthetic .text symbols for GNU ifunc symbols
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bf/bfa5bd2ab31a8abb23cb442d51fe6c3836028880/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 16:34 [binutils-gdb] For PPC64: elf_gnu_ifunc_record_cache: handle plt symbols in .text section sergiodj+buildbot
@ 2018-04-28 10:49 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-28 10:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3259>
Commit(s) tested:
1adeb822668d3bd7182ca9b8cf42a7261deb3c7f
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
For PPC64: elf_gnu_ifunc_record_cache: handle plt symbols in .text section
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1a/1adeb822668d3bd7182ca9b8cf42a7261deb3c7f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 15:43 [binutils-gdb] Eliminate find_pc_partial_function_gnu_ifunc sergiodj+buildbot
@ 2018-04-28 4:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-28 4:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3257>
Commit(s) tested:
a0aca7b0e13d884f43ba77c4c6d752d9140cb54b
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Eliminate find_pc_partial_function_gnu_ifunc
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a0/a0aca7b0e13d884f43ba77c4c6d752d9140cb54b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 15:18 [binutils-gdb] Breakpoints, don't skip prologue of ifunc resolvers with debug info sergiodj+buildbot
@ 2018-04-28 2:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-28 2:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3256>
Commit(s) tested:
76af0f26356580771a18c37de4ebccdfbc449356
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Breakpoints, don't skip prologue of ifunc resolvers with debug info
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/76/76af0f26356580771a18c37de4ebccdfbc449356/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 14:53 [binutils-gdb] Fix setting breakpoints on ifunc functions after they're already resolved sergiodj+buildbot
@ 2018-04-28 0:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-28 0:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3255>
Commit(s) tested:
3467ec66bc1f30cf3ed7f9fe75234c96fc9c92d5
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix setting breakpoints on ifunc functions after they're already resolved
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/34/3467ec66bc1f30cf3ed7f9fe75234c96fc9c92d5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 14:33 [binutils-gdb] Calling ifunc functions when resolver has debug info, user symbol same name sergiodj+buildbot
@ 2018-04-27 19:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-27 19:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3253>
Commit(s) tested:
ca31ab1d675c1e20cee5f8cb213c52e3d7352496
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Calling ifunc functions when resolver has debug info, user symbol same name
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ca/ca31ab1d675c1e20cee5f8cb213c52e3d7352496/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 13:28 [binutils-gdb] Calling ifunc functions when target has no debug info but resolver has sergiodj+buildbot
@ 2018-04-27 17:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-27 17:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3252>
Commit(s) tested:
8388016d7ff8b88d29f2427963f26a6b8bbb03b1
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Calling ifunc functions when target has no debug info but resolver has
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/83/8388016d7ff8b88d29f2427963f26a6b8bbb03b1/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/gnu-ifunc.exp: continue to break-at-nextcall
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 14:27 [binutils-gdb] Fix calling ifunc functions when resolver has debug info and different name sergiodj+buildbot
@ 2018-04-27 14:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-27 14:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3251>
Commit(s) tested:
a376e11d84ba7ea8cc7333c77043e20c7b0cfc91
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix calling ifunc functions when resolver has debug info and different name
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a3/a376e11d84ba7ea8cc7333c77043e20c7b0cfc91/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 12:47 [binutils-gdb] Fix breakpoints in ifunc after inferior resolved it (@got.plt symbol creation) sergiodj+buildbot
@ 2018-04-27 12:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-27 12:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3250>
Commit(s) tested:
02e169e2dac9b0354162eb0e7ee3fc95134b232d
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix breakpoints in ifunc after inferior resolved it (@got.plt symbol creation)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/02/02e169e2dac9b0354162eb0e7ee3fc95134b232d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 9:03 [binutils-gdb] x86: fold various non-memory operand AVX512VL templates sergiodj+buildbot
@ 2018-04-27 9:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-27 9:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3249>
Commit(s) tested:
e2195274d4a0752459ea89ffbf50b2704fb0c0b4
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: fold various non-memory operand AVX512VL templates
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e2/e2195274d4a0752459ea89ffbf50b2704fb0c0b4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 8:36 [binutils-gdb] x86: CpuXSAVE is a prereq for various other features sergiodj+buildbot
@ 2018-04-27 7:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-27 7:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3248>
Commit(s) tested:
59ef5df41e8a2addac4c74bb838fe8295cc79ebf
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: CpuXSAVE is a prereq for various other features
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/59/59ef5df41e8a2addac4c74bb838fe8295cc79ebf/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 8:13 [binutils-gdb] x86: drop CpuRegMMX, CpuReg[XYZ]MM, and CpuRegMask sergiodj+buildbot
@ 2018-04-27 4:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-27 4:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3247>
Commit(s) tested:
6e041cf4b0b00e85bee85bee98c411f16bd15747
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: drop CpuRegMMX, CpuReg[XYZ]MM, and CpuRegMask
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6e/6e041cf4b0b00e85bee85bee98c411f16bd15747/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 10:29 [binutils-gdb] x86: x87-related adjustments sergiodj+buildbot
@ 2018-04-27 1:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-27 1:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3246>
Commit(s) tested:
0e0eea782025d92f894f6d132aae2507c6a90a7b
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: x87-related adjustments
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0e/0e0eea782025d92f894f6d132aae2507c6a90a7b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 7:04 [binutils-gdb] x86: drop VexImmExt sergiodj+buildbot
@ 2018-04-26 23:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-26 23:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3245>
Commit(s) tested:
2f1bada2dc2e7215cd633b6c39a6c31dbd875bc0
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: drop VexImmExt
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2f/2f1bada2dc2e7215cd633b6c39a6c31dbd875bc0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 2:23 [binutils-gdb] [ARM] FDPIC: Make _GLOBAL_OFFSET_TABLE_ a relative symbol sergiodj+buildbot
@ 2018-04-26 19:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-26 19:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3243>
Commit(s) tested:
fac7bd6475c4058e7c1e0df29dac50579e427b34
Author(s) (in the same order as the commits):
Christophe Lyon <christophe.lyon@st.com>
Subject:
[ARM] FDPIC: Make _GLOBAL_OFFSET_TABLE_ a relative symbol
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fa/fac7bd6475c4058e7c1e0df29dac50579e427b34/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 1:48 [binutils-gdb] [ARM] FDPIC: Translate R_ARM_TARGET2 relocation into R_ARM_GOT32 relocation for FDPIC platform sergiodj+buildbot
@ 2018-04-26 16:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-26 16:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3242>
Commit(s) tested:
29e9b073e3b356aae4c249bf3e265b2a608aea6c
Author(s) (in the same order as the commits):
Christophe Lyon <christophe.lyon@st.com>
Subject:
[ARM] FDPIC: Translate R_ARM_TARGET2 relocation into R_ARM_GOT32 relocation for FDPIC platform
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/29/29e9b073e3b356aae4c249bf3e265b2a608aea6c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 1:29 [binutils-gdb] [ARM] FDPIC: Add stack segment sergiodj+buildbot
@ 2018-04-26 14:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-26 14:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3241>
Commit(s) tested:
cb10292c2a6c26349c02ec275e4087147fd1cdf0
Author(s) (in the same order as the commits):
Christophe Lyon <christophe.lyon@st.com>
Subject:
[ARM] FDPIC: Add stack segment
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cb/cb10292c2a6c26349c02ec275e4087147fd1cdf0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 0:55 [binutils-gdb] [ARM] Add TLS relocations for FDPIC sergiodj+buildbot
@ 2018-04-26 12:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-26 12:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3240>
Commit(s) tested:
5c5a4843ec385a60954fbbc4bcf5b64763639bd3
Author(s) (in the same order as the commits):
Christophe Lyon <christophe.lyon@st.com>
Subject:
[ARM] Add TLS relocations for FDPIC.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5c/5c5a4843ec385a60954fbbc4bcf5b64763639bd3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-26 0:03 [binutils-gdb] [ARM] Implement PLT for FDPIC sergiodj+buildbot
@ 2018-04-26 9:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-26 9:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3239>
Commit(s) tested:
7801f98f84fefa495941c86e2a859ea8c6c37770
Author(s) (in the same order as the commits):
Christophe Lyon <christophe.lyon@st.com>
Subject:
[ARM] Implement PLT for FDPIC.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/78/7801f98f84fefa495941c86e2a859ea8c6c37770/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-25 23:02 [binutils-gdb] [ARM] Add FDPIC relocations definitions sergiodj+buildbot
@ 2018-04-26 4:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-26 4:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3237>
Commit(s) tested:
188fd7aea619d9f66a822bad881d8f56892b60aa
Author(s) (in the same order as the commits):
Christophe Lyon <christophe.lyon@st.com>
Subject:
[ARM] Add FDPIC relocations definitions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/18/188fd7aea619d9f66a822bad881d8f56892b60aa/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-25 22:20 [binutils-gdb] [ARM] Add FDPIC OSABI flag support sergiodj+buildbot
@ 2018-04-26 2:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-26 2:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3236>
Commit(s) tested:
18a203380502fb3ee75633fd464faa3c83cec710
Author(s) (in the same order as the commits):
Christophe Lyon <christophe.lyon@st.com>
Subject:
[ARM] Add FDPIC OSABI flag support.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/18/18a203380502fb3ee75633fd464faa3c83cec710/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-25 21:40 [binutils-gdb] [ARM] Add armelf_linux_fdpiceabi and armelfb_linux_fdpiceabi BFD backends sergiodj+buildbot
@ 2018-04-25 23:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-25 23:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3235>
Commit(s) tested:
617a5ada88c7d4b6aae201ad5b295f3d2ef07c10
Author(s) (in the same order as the commits):
Christophe Lyon <christophe.lyon@st.com>
Subject:
[ARM] Add armelf_linux_fdpiceabi and armelfb_linux_fdpiceabi BFD backends
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/61/617a5ada88c7d4b6aae201ad5b295f3d2ef07c10/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-25 18:28 [binutils-gdb] Fix new inferior events output sergiodj+buildbot
@ 2018-04-25 20:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-25 20:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3234>
Commit(s) tested:
249b57335279b1051456884f1a908cdec907f43a
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix new inferior events output
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/24/249b57335279b1051456884f1a908cdec907f43a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-25 14:49 [binutils-gdb] x86: drop redundant AVX512VL shift templates sergiodj+buildbot
@ 2018-04-25 18:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-25 18:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3233>
Commit(s) tested:
bacd145775e3ca1a9d1a6d0b65c4ba10b307e167
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: drop redundant AVX512VL shift templates
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ba/bacd145775e3ca1a9d1a6d0b65c4ba10b307e167/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-25 0:47 [binutils-gdb] Remove arm-aout and arm-coff support sergiodj+buildbot
@ 2018-04-25 8:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-25 8:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3230>
Commit(s) tested:
2ac93be706418f3b2aebeb22159a328023faed52
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Remove arm-aout and arm-coff support
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2a/2ac93be706418f3b2aebeb22159a328023faed52/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-24 16:07 [binutils-gdb] Fix an illegal memory access when copying a PE format file with corrupt debug information sergiodj+buildbot
@ 2018-04-24 23:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-24 23:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3227>
Commit(s) tested:
aa4a8c2a2a67545e90c877162c53cc9de42dc8b4
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Fix an illegal memory access when copying a PE format file with corrupt debug information.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/aa/aa4a8c2a2a67545e90c877162c53cc9de42dc8b4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-23 12:15 [binutils-gdb] Prevent an illegal memory access in gprof by ensuring that string tables for aout format files are always zero-terminated sergiodj+buildbot
@ 2018-04-23 14:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-23 14:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3220>
Commit(s) tested:
bf82069dce1b1a88560e5d7320342c78372b627e
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Prevent an illegal memory access in gprof by ensuring that string tables for aout format files are always zero-terminated.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bf/bf82069dce1b1a88560e5d7320342c78372b627e/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-23 9:10 [binutils-gdb] Silence gcc-8 warnings sergiodj+buildbot
@ 2018-04-23 12:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-23 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/3219>
Commit(s) tested:
5a6312e8c015d4a98020038f3b6e144db230f3ca
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Silence gcc-8 warnings
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5a/5a6312e8c015d4a98020038f3b6e144db230f3ca/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-20 21:47 [binutils-gdb] Improve on-line help for thread_apply_command and thread_apply_all_command sergiodj+buildbot
@ 2018-04-21 9:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-21 9:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3215>
Commit(s) tested:
5c8f23cdab2a7cde2dae6fcd5f9b18d089efecaf
Author(s) (in the same order as the commits):
Philippe Waroquiers <philippe.waroquiers@skynet.be>
Subject:
Improve on-line help for thread_apply_command and thread_apply_all_command.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5c/5c8f23cdab2a7cde2dae6fcd5f9b18d089efecaf/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-20 14:09 [binutils-gdb] PR22978, TLS local-dynamic incorrectly linked on hppa-linux sergiodj+buildbot
@ 2018-04-20 21:47 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-20 21:47 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3214>
Commit(s) tested:
4352556b36ab4f1c6f81a0ac3daf4619a419558d
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22978, TLS local-dynamic incorrectly linked on hppa-linux
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/43/4352556b36ab4f1c6f81a0ac3daf4619a419558d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-19 17:40 [binutils-gdb] Fix dependency tracking in gdbserver subdirectories sergiodj+buildbot
@ 2018-04-19 22:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-19 22:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3211>
Commit(s) tested:
f31c089e788f7b45c9030ac399cd34eb3ccdb9c1
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Fix dependency tracking in gdbserver subdirectories
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f3/f31c089e788f7b45c9030ac399cd34eb3ccdb9c1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-18 21:02 [binutils-gdb] Remove xml file references from target descriptions sergiodj+buildbot
@ 2018-04-19 12:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-19 12:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3207>
Commit(s) tested:
3b74854b8db5836707af828b256c1322a71241b3
Author(s) (in the same order as the commits):
Alan Hayward <alan.hayward@arm.com>
Subject:
Remove xml file references from target descriptions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3b/3b74854b8db5836707af828b256c1322a71241b3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-18 20:22 [binutils-gdb] Add feature reference in .dat files sergiodj+buildbot
@ 2018-04-19 6:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-19 6:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3205>
Commit(s) tested:
ad7fc756d12a841d4b8dd707568426d875e26755
Author(s) (in the same order as the commits):
Alan Hayward <alan.hayward@arm.com>
Subject:
Add feature reference in .dat files
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ad/ad7fc756d12a841d4b8dd707568426d875e26755/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-18 14:07 [binutils-gdb] Commonise tdesc_feature and makes use of it in gdbserver tdesc sergiodj+buildbot
@ 2018-04-18 20:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-18 20:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3200>
Commit(s) tested:
82ec9bc7055ca76f1f7dd344f3f58bf6aecec7c8
Author(s) (in the same order as the commits):
Alan Hayward <alan.hayward@arm.com>
Subject:
Commonise tdesc_feature and makes use of it in gdbserver tdesc
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/82/82ec9bc7055ca76f1f7dd344f3f58bf6aecec7c8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-18 8:44 [binutils-gdb] Remove mips aout, coff, and pe support sergiodj+buildbot
@ 2018-04-18 15:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-18 15:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3198>
Commit(s) tested:
3596d8ceb2cdc35b4fd702ee9daace5a2d880174
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Remove mips aout, coff, and pe support
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/35/3596d8ceb2cdc35b4fd702ee9daace5a2d880174/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-18 2:13 [binutils-gdb] elf32_bed/elf64_bed sergiodj+buildbot
@ 2018-04-18 13:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-18 13:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3197>
Commit(s) tested:
8f56f7a23911b6a48b372c8f0893343bfe7ed2e9
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
elf32_bed/elf64_bed
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8f/8f56f7a23911b6a48b372c8f0893343bfe7ed2e9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-18 1:33 [binutils-gdb] x86: Use a normal input file with compatible relocation sergiodj+buildbot
@ 2018-04-18 11:24 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-18 11:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3196>
Commit(s) tested:
e4e6a73d26ef82622d3bd190749aad508534abe6
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Use a normal input file with compatible relocation
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e4/e4e6a73d26ef82622d3bd190749aad508534abe6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-18 0:23 [binutils-gdb] various i386-aout and i386-coff target removal sergiodj+buildbot
@ 2018-04-18 8:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-18 8:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3195>
Commit(s) tested:
c65c21e1ffd1e02d9970a4bca0b7e384788a50f0
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
various i386-aout and i386-coff target removal
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c6/c65c21e1ffd1e02d9970a4bca0b7e384788a50f0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-17 20:26 [binutils-gdb] Conditionally drop the discriminant field in quirk_rust_enum sergiodj+buildbot
@ 2018-04-18 4:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-18 4:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3193>
Commit(s) tested:
bedda9aced2b3a8ab05e0fbf1372e394e32afbde
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Conditionally drop the discriminant field in quirk_rust_enum
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/be/bedda9aced2b3a8ab05e0fbf1372e394e32afbde/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-17 17:52 [binutils-gdb] Don't print symbol declaration's line number in rbreak output sergiodj+buildbot
@ 2018-04-17 23:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-17 23:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3191>
Commit(s) tested:
c7dcbf88c6557f35d9e75ae6223a3e61e1f70578
Author(s) (in the same order as the commits):
Andreas Arnez <arnez@linux.vnet.ibm.com>
Subject:
Don't print symbol declaration's line number in rbreak output
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c7/c7dcbf88c6557f35d9e75ae6223a3e61e1f70578/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-17 13:19 [binutils-gdb] Resync libiberty sources with master version in GCC repository sergiodj+buildbot
@ 2018-04-17 17:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-17 17:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3188>
Commit(s) tested:
e9301e762ab6d533f7110d6c9c1dbe8e68e875d7
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Resync libiberty sources with master version in GCC repository.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e9/e9301e762ab6d533f7110d6c9c1dbe8e68e875d7/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-17 3:38 [binutils-gdb] Reinstate readelf decoding of i860, i960 and i370 relocs sergiodj+buildbot
@ 2018-04-17 13:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-17 13:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3186>
Commit(s) tested:
f954747f10467071b0acde07ee5f5e268ab606a6
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Reinstate readelf decoding of i860, i960 and i370 relocs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f9/f954747f10467071b0acde07ee5f5e268ab606a6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-16 21:12 [binutils-gdb] linux_spu_make_corefile_notes: return note_data instead of nullptr sergiodj+buildbot
@ 2018-04-17 11:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-17 11:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3185>
Commit(s) tested:
07d28c777757148d13e429c4463da52cbb50d297
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
linux_spu_make_corefile_notes: return note_data instead of nullptr
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/07/07d28c777757148d13e429c4463da52cbb50d297/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-16 19:20 [binutils-gdb] Adjust more test cases to changed output of info var/func/type sergiodj+buildbot
@ 2018-04-17 8:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-17 8:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3184>
Commit(s) tested:
e3a91079b5e5669567424d3b2f31b48b7b89ef72
Author(s) (in the same order as the commits):
Andreas Arnez <arnez@linux.vnet.ibm.com>
Subject:
Adjust more test cases to changed output of info var/func/type
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e3/e3a91079b5e5669567424d3b2f31b48b7b89ef72/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-16 9:50 [binutils-gdb] Remove h8300-coff support sergiodj+buildbot
@ 2018-04-16 20:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-16 20:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3168>
Commit(s) tested:
fe0bf0fd57ea3ef8458d2e8661b428110fc026e2
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Remove h8300-coff support
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fe/fe0bf0fd57ea3ef8458d2e8661b428110fc026e2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-16 9:17 [binutils-gdb] Remove IEEE 695 object support sergiodj+buildbot
@ 2018-04-16 18:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-16 18:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3167>
Commit(s) tested:
fdef3943443987525aea4f3ebe1f569f7070fcc8
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Remove IEEE 695 object support
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fd/fdef3943443987525aea4f3ebe1f569f7070fcc8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-16 8:43 [binutils-gdb] Remove tandem support sergiodj+buildbot
@ 2018-04-16 16:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-16 16:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3166>
Commit(s) tested:
de96689e03235bfd65a33704a9d398cb666140f4
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Remove tandem support
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/de/de96689e03235bfd65a33704a9d398cb666140f4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-14 9:25 [binutils-gdb] powerpc common-page-size sergiodj+buildbot
@ 2018-04-14 16:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-14 16:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3159>
Commit(s) tested:
702d167134149f420ea3bcbc194d63a2653a0c27
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
powerpc common-page-size
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/70/702d167134149f420ea3bcbc194d63a2653a0c27/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-14 9:08 [binutils-gdb] powerpc max-page-size vs __QNXTARGET__ sergiodj+buildbot
@ 2018-04-14 14:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-14 14:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3158>
Commit(s) tested:
03aa968462e0345b2d846ca240b8c723d713761a
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
powerpc max-page-size vs __QNXTARGET__
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/03/03aa968462e0345b2d846ca240b8c723d713761a/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.linespec/cpls-ops.exp: conversion-operator: cmd complete "b -function test_op_conversion::operator test_op_conversion_res const volatile**
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-14 8:58 [binutils-gdb] powerpc-lynxos and powerpc-windiss fixes sergiodj+buildbot
@ 2018-04-14 11:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-14 11:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3157>
Commit(s) tested:
24acfe5e2b7d4e6c0ccb72ffffc349d7fa88838d
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
powerpc-lynxos and powerpc-windiss fixes
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/24/24acfe5e2b7d4e6c0ccb72ffffc349d7fa88838d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-13 17:44 [binutils-gdb] Show line numbers in output for "info var/func/type" sergiodj+buildbot
@ 2018-04-13 21:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-13 21:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3156>
Commit(s) tested:
b744723f571815e6cee43df371c8e733e34e1edf
Author(s) (in the same order as the commits):
Andreas Arnez <arnez@linux.vnet.ibm.com>
Subject:
Show line numbers in output for "info var/func/type"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b7/b744723f571815e6cee43df371c8e733e34e1edf/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/dbx.exp: whereis my_list
PASS -> FAIL: gdb.base/info-fun.exp: IN: info fun foo
PASS -> FAIL: gdb.base/info-fun.exp: SEP: info fun foo
PASS -> FAIL: gdb.base/pr10179.exp: rbreak foo.*
PASS -> FAIL: gdb.base/pr10179.exp: rbreak pr10179-a.c:foo.*
PASS -> FAIL: gdb.base/pr10179.exp: rbreak pr10179-a.c : .*
PASS -> FAIL: gdb.base/realname-expand.exp: rbreak realname-expand-real.c:func
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-13 10:21 [binutils-gdb] btrace: set/show record btrace cpu sergiodj+buildbot
@ 2018-04-13 19:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-13 19:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3155>
Commit(s) tested:
4a4495d62d185bdae17ed6aae6ea8249ad07c799
Author(s) (in the same order as the commits):
Markus Metzger <markus.t.metzger@intel.com>
Subject:
btrace: set/show record btrace cpu
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4a/4a4495d62d185bdae17ed6aae6ea8249ad07c799/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-13 9:59 [binutils-gdb] btrace: fix output of "set record btrace" sergiodj+buildbot
@ 2018-04-13 14:13 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-13 14:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3153>
Commit(s) tested:
b85310e1ec0419c4e1ca091cdd48f7597ebbefd3
Author(s) (in the same order as the commits):
Markus Metzger <markus.t.metzger@intel.com>
Subject:
btrace: fix output of "set record btrace"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b8/b85310e1ec0419c4e1ca091cdd48f7597ebbefd3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-12 20:34 [binutils-gdb] Fix -D_GLIBCXX_DEBUG gdb-add-index regression sergiodj+buildbot
@ 2018-04-13 3:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-13 3:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3150>
Commit(s) tested:
b4be9bfdabb57f40656e72a50a8466af4f7bd37d
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/Ubuntu-AArch32-m32/b4/b4be9bfdabb57f40656e72a50a8466af4f7bd37d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-12 19:33 [binutils-gdb] Remove old univariant code from rust-lang.c sergiodj+buildbot
@ 2018-04-13 1:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-13 1:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3149>
Commit(s) tested:
53d7df28bcbaecaf2dca7f8a4bf829e3dd786693
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove old univariant code from rust-lang.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/53/53d7df28bcbaecaf2dca7f8a4bf829e3dd786693/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-12 17:40 [binutils-gdb] Fix Solaris build sergiodj+buildbot
@ 2018-04-12 23:24 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-12 23:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3148>
Commit(s) tested:
70b33f195b0d76e140921db40c0bea5a7c9abc42
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix Solaris build
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/70/70b33f195b0d76e140921db40c0bea5a7c9abc42/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.dwarf2/gdb-index.exp: index used
PASS -> FAIL: gdb.dwarf2/gdb-index.exp: index used after symbol reloading
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-11 11:23 [binutils-gdb] File I/O file handles after target closes sergiodj+buildbot
@ 2018-04-11 15:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-11 15:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3141>
Commit(s) tested:
20db9c52a2073246a5c46a0274569e10b317866f
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
File I/O file handles after target closes
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/20/20db9c52a2073246a5c46a0274569e10b317866f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-10 21:11 [binutils-gdb] Iterate by index in auto_load_safe_path_vec_update sergiodj+buildbot
@ 2018-04-10 23:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-10 23:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3139>
Commit(s) tested:
6e22e10d63addd60f39114cef81ade290b15b2c8
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Iterate by index in auto_load_safe_path_vec_update
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6e/6e22e10d63addd60f39114cef81ade290b15b2c8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-09 20:08 [binutils-gdb] Use an std::vector for inline_states sergiodj+buildbot
@ 2018-04-10 12:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-10 12:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3134>
Commit(s) tested:
b24531ed171b5751a3a64c461728c9ad62092c8a
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Use an std::vector for inline_states
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b2/b24531ed171b5751a3a64c461728c9ad62092c8a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-09 19:54 [binutils-gdb] Remove VEC(tsv_s), use std::vector instead sergiodj+buildbot
@ 2018-04-10 9:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-10 9:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3133>
Commit(s) tested:
c252925ccc8c3c2ce2a65d12a50acfee53914ce3
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove VEC(tsv_s), use std::vector instead
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c2/c252925ccc8c3c2ce2a65d12a50acfee53914ce3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-09 20:19 [binutils-gdb] Adapt and integrate string_view tests sergiodj+buildbot
@ 2018-04-10 8:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-10 8:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3132>
Commit(s) tested:
c9638d2669ced9348eac869dadc7be24df85a9a8
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Adapt and integrate string_view tests
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c9/c9638d2669ced9348eac869dadc7be24df85a9a8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-09 19:11 [binutils-gdb] Add gdb::string_view sergiodj+buildbot
@ 2018-04-10 5:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-10 5:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3130>
Commit(s) tested:
8345c4a2670711eafd41c8b6a8726cf8b0771d6e
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Add gdb::string_view
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/83/8345c4a2670711eafd41c8b6a8726cf8b0771d6e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-09 18:41 [binutils-gdb] Update ax_cv_cxx_compile_cxx.m4 sergiodj+buildbot
@ 2018-04-10 2:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-10 2:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3128>
Commit(s) tested:
41260ac25d541d9bdd039a0ce82c9ad31fceed35
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Update ax_cv_cxx_compile_cxx.m4
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/41/41260ac25d541d9bdd039a0ce82c9ad31fceed35/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-09 15:13 [binutils-gdb] Apply "Convert observers to C++" edit to gdbarch.sh sergiodj+buildbot
@ 2018-04-10 1:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-10 1:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3127>
Commit(s) tested:
0bee6dd4aa42b928c2a7a496596490b694e5722b
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Apply "Convert observers to C++" edit to gdbarch.sh
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0b/0bee6dd4aa42b928c2a7a496596490b694e5722b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-09 13:12 [binutils-gdb] MIPS64/BFD: Fix a crash with STN_UNDEF in relocation sergiodj+buildbot
@ 2018-04-09 23:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-09 23:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3126>
Commit(s) tested:
aec2e0d252342aa7575aff608e999a36f27a9147
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
MIPS64/BFD: Fix a crash with STN_UNDEF in relocation
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ae/aec2e0d252342aa7575aff608e999a36f27a9147/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-09 11:16 [binutils-gdb] PowerPC inline PLT call support sergiodj+buildbot
@ 2018-04-09 19:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-09 19:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3123>
Commit(s) tested:
23cedd1dc90d05c4b80d4a4b000ed5f37b9c3268
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PowerPC inline PLT call support
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/23/23cedd1dc90d05c4b80d4a4b000ed5f37b9c3268/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-09 9:17 [binutils-gdb] Support PLT16 relocs against local symbols sergiodj+buildbot
@ 2018-04-09 17:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-09 17:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3122>
Commit(s) tested:
2d7ad24e8726ba4c45c9e67be08223a146a837ce
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Support PLT16 relocs against local symbols
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2d/2d7ad24e8726ba4c45c9e67be08223a146a837ce/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-09 9:03 [binutils-gdb] Rearrange PLT reloc output on powerpc sergiodj+buildbot
@ 2018-04-09 14:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-09 14:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3121>
Commit(s) tested:
49c09209d06885dc8350042ce77e442bfbb5bf27
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Rearrange PLT reloc output on powerpc
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/49/49c09209d06885dc8350042ce77e442bfbb5bf27/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 20:40 [binutils-gdb] Fix gdb.mi/mi-stack.exp when gcc generates a stack protector sergiodj+buildbot
@ 2018-04-08 13:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-08 13:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3117>
Commit(s) tested:
a0be7a3671e6252c0f3353d128f84c641005fa06
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Fix gdb.mi/mi-stack.exp when gcc generates a stack protector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a0/a0be7a3671e6252c0f3353d128f84c641005fa06/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 20:11 [binutils-gdb] Replace make_cleanup_restore_current_traceframe with RAII class sergiodj+buildbot
@ 2018-04-08 10:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-08 10:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3115>
Commit(s) tested:
6f14adc55864818ec3754460f5df4150c2addf42
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Replace make_cleanup_restore_current_traceframe with RAII class
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6f/6f14adc55864818ec3754460f5df4150c2addf42/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 19:29 [binutils-gdb] Remove some usages of get_dwarf2_per_objfile sergiodj+buildbot
@ 2018-04-08 5:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-08 5:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3112>
Commit(s) tested:
12359b5e8f2a4034e1e4cd7f0b454fb03151df4c
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove some usages of get_dwarf2_per_objfile
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/12/12359b5e8f2a4034e1e4cd7f0b454fb03151df4c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 20:50 [binutils-gdb] Replace dw2_get_cu/dw2_get_cutu with methods of dwarf2_per_objfile sergiodj+buildbot
@ 2018-04-08 3:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-08 3:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3111>
Commit(s) tested:
ff4c9fec8413fa4e0b11ef092a86669305894a7a
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Replace dw2_get_cu/dw2_get_cutu with methods of dwarf2_per_objfile
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ff/ff4c9fec8413fa4e0b11ef092a86669305894a7a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 19:01 [binutils-gdb] Remove some unused variables in dwarf2read.c sergiodj+buildbot
@ 2018-04-08 2:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-08 2:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3110>
Commit(s) tested:
5ca3fcb669bc655e2e79866be086e8ac564e472b
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove some unused variables in dwarf2read.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5c/5ca3fcb669bc655e2e79866be086e8ac564e472b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 18:47 [binutils-gdb] Defer breakpoint reset when cloning progspace for fork child sergiodj+buildbot
@ 2018-04-08 1:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-08 1:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3109>
Commit(s) tested:
b2e586e850dbf1dafc10beea3250d22e70add4b5
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Defer breakpoint reset when cloning progspace for fork child
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b2/b2e586e850dbf1dafc10beea3250d22e70add4b5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 18:34 [binutils-gdb] Implement write_async_safe for mi_console_file (PR 22299) sergiodj+buildbot
@ 2018-04-08 0:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-08 0:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3108>
Commit(s) tested:
7c4e78cf63f6436ae43e8289badba78d81e2eb2c
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Implement write_async_safe for mi_console_file (PR 22299)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7c/7c4e78cf63f6436ae43e8289badba78d81e2eb2c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 20:17 [binutils-gdb] Remove stale file i386-avx.dat sergiodj+buildbot
@ 2018-04-07 22:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-07 22:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3107>
Commit(s) tested:
5dc026d3f04ac657378308202ff7d43a1613f14c
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove stale file i386-avx.dat
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5d/5dc026d3f04ac657378308202ff7d43a1613f14c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 18:05 [binutils-gdb] Fix generation of x86-64 gdbarch with osabi none (PR 22979) sergiodj+buildbot
@ 2018-04-07 21:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-07 21:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3106>
Commit(s) tested:
c912f608be7bc2598b919da2b11721b3c262d154
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Fix generation of x86-64 gdbarch with osabi none (PR 22979)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c9/c912f608be7bc2598b919da2b11721b3c262d154/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 17:38 [binutils-gdb] Make target_read_alloc & al return vectors sergiodj+buildbot
@ 2018-04-07 18:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-07 18:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3104>
Commit(s) tested:
9018be22e022e6db2ba07c4e407c7244022bc69a
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Make target_read_alloc & al return vectors
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/90/9018be22e022e6db2ba07c4e407c7244022bc69a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 0:26 [binutils-gdb] Remove range_s VEC sergiodj+buildbot
@ 2018-04-07 13:44 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-07 13:44 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3102>
Commit(s) tested:
0c7e6dd852f01b3ea38b98c39a2bb36280b02b55
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove range_s VEC
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0c/0c7e6dd852f01b3ea38b98c39a2bb36280b02b55/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-06 23:57 [binutils-gdb] Use new and delete for values sergiodj+buildbot
@ 2018-04-07 11:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-07 11:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3100>
Commit(s) tested:
466ce3aea9cec006b8b0e348c9021ac2c8106022
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use new and delete for values
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/46/466ce3aea9cec006b8b0e348c9021ac2c8106022/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 4:04 [binutils-gdb] Remove value::next and value::released sergiodj+buildbot
@ 2018-04-07 8:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-07 8:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3099>
Commit(s) tested:
062d818d2535d4bc9ccd5dbf3c6702b9f3e763cc
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove value::next and value::released
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/06/062d818d2535d4bc9ccd5dbf3c6702b9f3e763cc/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-06 23:29 [binutils-gdb] Remove free_value_chain sergiodj+buildbot
@ 2018-04-07 7:10 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-07 7:10 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3098>
Commit(s) tested:
a6535de1903d9caad8c10c1d81c51a29612456a6
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove free_value_chain
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a6/a6535de1903d9caad8c10c1d81c51a29612456a6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 2:23 [binutils-gdb] Remove free_all_values sergiodj+buildbot
@ 2018-04-07 5:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-07 5:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3097>
Commit(s) tested:
b562120198d9fa2c191823508813daa3b62a3a37
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove free_all_values
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b5/b562120198d9fa2c191823508813daa3b62a3a37/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-06 23:00 [binutils-gdb] Change value history to use value_ref_ptr sergiodj+buildbot
@ 2018-04-07 4:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-07 4:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3096>
Commit(s) tested:
4d0266a0e0d9e9b615b04ff209a73d3725495835
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change value history to use value_ref_ptr
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4d/4d0266a0e0d9e9b615b04ff209a73d3725495835/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-07 0:41 [binutils-gdb] Change varobj to use value_ref_ptr sergiodj+buildbot
@ 2018-04-07 3:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-07 3:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3095>
Commit(s) tested:
b4d61099ba840824fd0aac9800403f6278476347
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change varobj to use value_ref_ptr
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b4/b4d61099ba840824fd0aac9800403f6278476347/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-06 22:31 [binutils-gdb] Change last_examine_value to value_ref_ptr sergiodj+buildbot
@ 2018-04-07 1:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-07 1:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3094>
Commit(s) tested:
9b5587295bbc57e5e0453b659e24d7c2b504b894
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change last_examine_value to value_ref_ptr
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9b/9b5587295bbc57e5e0453b659e24d7c2b504b894/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-06 20:32 [binutils-gdb] Add -Wno-error=deprecated-register to gdb build flags sergiodj+buildbot
@ 2018-04-06 21:53 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-06 21:53 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3091>
Commit(s) tested:
7f8a5d38ed00ad4ecc920322c4b852f3cf905a94
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Add -Wno-error=deprecated-register to gdb build flags
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7f/7f8a5d38ed00ad4ecc920322c4b852f3cf905a94/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-05 22:53 [binutils-gdb] Use dlsym to check if libdl is needed for plugin sergiodj+buildbot
@ 2018-04-06 11:24 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-06 11:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3089>
Commit(s) tested:
3cba8b6c93ab8c573ba4678255df11486de61c54
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
Use dlsym to check if libdl is needed for plugin
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3c/3cba8b6c93ab8c573ba4678255df11486de61c54/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-05 22:49 [binutils-gdb] config: Sync with GCC sergiodj+buildbot
@ 2018-04-06 9:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-06 9:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3088>
Commit(s) tested:
552d4da4178cc5e8d567ee150462a28d51f08fc0
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
config: Sync with GCC
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/55/552d4da4178cc5e8d567ee150462a28d51f08fc0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-05 18:17 [binutils-gdb] Change streq to return bool sergiodj+buildbot
@ 2018-04-06 3:13 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-06 3:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3084>
Commit(s) tested:
459a2e4ccf9aadfba9819facba1c9be5297c1625
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change streq to return bool
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/45/459a2e4ccf9aadfba9819facba1c9be5297c1625/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-05 15:05 [binutils-gdb] Remove a string copy from event_location_to_sals sergiodj+buildbot
@ 2018-04-06 1:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-06 1:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3083>
Commit(s) tested:
9be2c17a900178df75a2208fd112ceb4325a70c1
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove a string copy from event_location_to_sals
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9b/9be2c17a900178df75a2208fd112ceb4325a70c1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-05 14:52 [binutils-gdb] Have filter_results take a std::vector sergiodj+buildbot
@ 2018-04-05 22:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-05 22:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3082>
Commit(s) tested:
f73c6ece7888af880d3b03b2d57ee7782f2a539b
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Have filter_results take a std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f7/f73c6ece7888af880d3b03b2d57ee7782f2a539b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-05 14:37 [binutils-gdb] Return std::string from canonical_to_fullform sergiodj+buildbot
@ 2018-04-05 19:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-05 19:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3079>
Commit(s) tested:
53a0f8a250199af97ff8708e3899835086c7a24d
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Return std::string from canonical_to_fullform
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/53/53a0f8a250199af97ff8708e3899835086c7a24d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-05 14:24 [binutils-gdb] Make copy_token_string return unique_xmalloc_ptr sergiodj+buildbot
@ 2018-04-05 18:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-05 18:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3078>
Commit(s) tested:
a5b5adf529fa64391bc1ef733b3e78f15d94c4b9
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Make copy_token_string return unique_xmalloc_ptr
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a5/a5b5adf529fa64391bc1ef733b3e78f15d94c4b9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-05 13:56 [binutils-gdb] Remove some cleanups from search_minsyms_for_name sergiodj+buildbot
@ 2018-04-05 15:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-05 15:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3076>
Commit(s) tested:
41c1efc614472cdc74397e734f5a66018362a80a
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove some cleanups from search_minsyms_for_name
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/41/41c1efc614472cdc74397e734f5a66018362a80a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-04 11:58 [binutils-gdb] i386: Clear vex instead of vex.evex sergiodj+buildbot
@ 2018-04-04 14:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-04 14:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3073>
Commit(s) tested:
caf0678c84b5b55fbc4bcc853954745a4ad8b658
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/Ubuntu-AArch32-m32/ca/caf0678c84b5b55fbc4bcc853954745a4ad8b658/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-04 8:16 [binutils-gdb] Update Spanish translations for ld/ opcodes/ and gold/ sub-directories sergiodj+buildbot
@ 2018-04-04 12:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-04 12:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3072>
Commit(s) tested:
4fb0d2b912ad079263ed98a3c4d78e5a7ccc93b0
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Update Spanish translations for ld/ opcodes/ and gold/ sub-directories
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4f/4fb0d2b912ad079263ed98a3c4d78e5a7ccc93b0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-04 2:44 [binutils-gdb] PR binutils/22875: HPPA/ELF: Also fail with relocation placeholders sergiodj+buildbot
@ 2018-04-04 10:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-04 10:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3071>
Commit(s) tested:
8ee55178c22326c3624ad5872dc5382341ddcd2c
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
PR binutils/22875: HPPA/ELF: Also fail with relocation placeholders
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8e/8ee55178c22326c3624ad5872dc5382341ddcd2c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-04 2:30 [binutils-gdb] PR binutils/22875: i860/ELF: Report unsupported relocation types sergiodj+buildbot
@ 2018-04-04 8:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-04 8:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3070>
Commit(s) tested:
5d7c8b80485d75242e7c78e79b3ecb4c71abaee3
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
PR binutils/22875: i860/ELF: Report unsupported relocation types
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5d/5d7c8b80485d75242e7c78e79b3ecb4c71abaee3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-04 2:16 [binutils-gdb] PR binutils/22875: Visium/ELF: Prevent an out-of-bounds howto table access sergiodj+buildbot
@ 2018-04-04 6:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-04 6:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3069>
Commit(s) tested:
707bad1b21c18cf8e570fb8df8f7c5961fb0f3a5
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
PR binutils/22875: Visium/ELF: Prevent an out-of-bounds howto table access
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/70/707bad1b21c18cf8e570fb8df8f7c5961fb0f3a5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-04 1:44 [binutils-gdb] PR binutils/22875: IQ2000/ELF: Prevent an out-of-bounds howto table access sergiodj+buildbot
@ 2018-04-04 5:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-04 5:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3068>
Commit(s) tested:
0cc919dc6abede5e61b9d8234028fba879166088
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
PR binutils/22875: IQ2000/ELF: Prevent an out-of-bounds howto table access
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0c/0cc919dc6abede5e61b9d8234028fba879166088/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-04 2:02 [binutils-gdb] PR binutils/22875: FRV/ELF: Prevent an out-of-bounds howto table access sergiodj+buildbot
@ 2018-04-04 3:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-04 3:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3067>
Commit(s) tested:
f428698edfd845a21639f5145cba3772eb92abc2
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
PR binutils/22875: FRV/ELF: Prevent an out-of-bounds howto table access
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f4/f428698edfd845a21639f5145cba3772eb92abc2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-04 1:17 [binutils-gdb] PR binutils/22875: MIPS/ELF: Also fail with relocation placeholders sergiodj+buildbot
@ 2018-04-04 2:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-04 2:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3066>
Commit(s) tested:
7ed6f92aaffdcc0995b0247379fb8ea621854dce
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
PR binutils/22875: MIPS/ELF: Also fail with relocation placeholders
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7e/7ed6f92aaffdcc0995b0247379fb8ea621854dce/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-03 18:20 [binutils-gdb] Change read_alphacoff_dynamic_symtab to use gdb::byte_vector sergiodj+buildbot
@ 2018-04-03 19:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-03 19:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3065>
Commit(s) tested:
c5edbf3d1c58d59135788f084a3bf681a49e0f9a
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change read_alphacoff_dynamic_symtab to use gdb::byte_vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c5/c5edbf3d1c58d59135788f084a3bf681a49e0f9a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-04-02 2:44 [binutils-gdb] Change rs6000_ptrace_ldinfo to return a byte_vector sergiodj+buildbot
@ 2018-04-02 3:49 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-04-02 3:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3062>
Commit(s) tested:
09473be85c13eab0d794e363d898b74d66431d72
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change rs6000_ptrace_ldinfo to return a byte_vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/09/09473be85c13eab0d794e363d898b74d66431d72/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-30 22:03 [binutils-gdb] Remove usage of VEC(char_ptr) in gdbscm_parse_function_args sergiodj+buildbot
@ 2018-03-31 9:24 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-31 9:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3059>
Commit(s) tested:
d8611974cf819e5f8cb9eb36907251f3e2d721c6
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove usage of VEC(char_ptr) in gdbscm_parse_function_args
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d8/d8611974cf819e5f8cb9eb36907251f3e2d721c6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-31 1:27 [binutils-gdb] Use std::vector and std::string instead of VEC(char_ptr) in gdbserver tdesc sergiodj+buildbot
@ 2018-03-31 7:10 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-31 7:10 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3058>
Commit(s) tested:
17d08cd4137063dbc43d9989b9a5cb315171174f
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Use std::vector and std::string instead of VEC(char_ptr) in gdbserver tdesc
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/17/17d08cd4137063dbc43d9989b9a5cb315171174f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-30 22:45 [binutils-gdb] Use std::vector in uploaded_tp sergiodj+buildbot
@ 2018-03-31 5:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-31 5:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3057>
Commit(s) tested:
a18ba4e4c9d64eeb2ea65e5315fbd8b4261a1756
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Use std::vector in uploaded_tp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a1/a18ba4e4c9d64eeb2ea65e5315fbd8b4261a1756/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-30 20:35 [binutils-gdb] Remove some cleanups from solib-svr4.c sergiodj+buildbot
@ 2018-03-31 4:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-31 4:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3056>
Commit(s) tested:
a7961323e2fce4f831e117cc43e20e5144192240
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove some cleanups from solib-svr4.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a7/a7961323e2fce4f831e117cc43e20e5144192240/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-30 19:55 [binutils-gdb] Remove parameter from free_dwo_file sergiodj+buildbot
@ 2018-03-31 0:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-31 0:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3053>
Commit(s) tested:
5dafb3d176ab8d9b9f0a46111d7040bb51ad8f8e
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove parameter from free_dwo_file
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5d/5dafb3d176ab8d9b9f0a46111d7040bb51ad8f8e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-30 20:03 [binutils-gdb] Remove free_cached_comp_units cleanups sergiodj+buildbot
@ 2018-03-30 22:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-30 22:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3052>
Commit(s) tested:
11ed8cada64e717900117364c2fee0132c1eb099
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove free_cached_comp_units cleanups
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/11/11ed8cada64e717900117364c2fee0132c1eb099/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-29 13:26 [binutils-gdb] PR binutils/22875: MIPS: Remove duplicate unsupported relocation processing sergiodj+buildbot
@ 2018-03-29 14:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-29 14:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3050>
Commit(s) tested:
75def2abc3dafb52418405905cd49e9c107c2640
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
PR binutils/22875: MIPS: Remove duplicate unsupported relocation processing
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/75/75def2abc3dafb52418405905cd49e9c107c2640/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-28 20:56 [binutils-gdb] MIPS/BFD: Call `mips_elf32_rtype_to_howto' directly with o32 sergiodj+buildbot
@ 2018-03-29 0:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-29 0:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3047>
Commit(s) tested:
8205a328f8b852086652841dfc2aff4ca0b16d45
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
MIPS/BFD: Call `mips_elf32_rtype_to_howto' directly with o32
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/82/8205a328f8b852086652841dfc2aff4ca0b16d45/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-28 17:35 [binutils-gdb] [1/2][GAS][AARCH64]Add BFD_RELOC_AARCH64_TLSLE_LDST8/16/32/64_TPREL_LO12 support in GAS sergiodj+buildbot
@ 2018-03-28 21:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-28 21:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3045>
Commit(s) tested:
84f1b9fb081372a726fd70dfd8258a707833caef
Author(s) (in the same order as the commits):
Renlin Li <renlin.li@arm.com>
Subject:
[1/2][GAS][AARCH64]Add BFD_RELOC_AARCH64_TLSLE_LDST8/16/32/64_TPREL_LO12 support in GAS.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/84/84f1b9fb081372a726fd70dfd8258a707833caef/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-28 13:10 [binutils-gdb] x86: convert broadcast insn attribute to boolean sergiodj+buildbot
@ 2018-03-28 18:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-28 18:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3043>
Commit(s) tested:
8e6e0792d17be5d4321def520d12c1764dc0ba2a
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: convert broadcast insn attribute to boolean
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8e/8e6e0792d17be5d4321def520d12c1764dc0ba2a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-28 12:42 [binutils-gdb] x86: don't show suffixes for to-scalar-int conversion insns sergiodj+buildbot
@ 2018-03-28 14:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-28 14:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3041>
Commit(s) tested:
9646c87b5a6c0462e8a9b6305d9e449bd099f19d
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: don't show suffixes for to-scalar-int conversion insns
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/96/9646c87b5a6c0462e8a9b6305d9e449bd099f19d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-28 10:35 [binutils-gdb] PR ld/22972 on SPARC sergiodj+buildbot
@ 2018-03-28 13:06 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-28 13:06 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3040>
Commit(s) tested:
f8745e1cd139b5c6a5bd8a30ea84ccbd45dec81c
Author(s) (in the same order as the commits):
Eric Botcazou <ebotcazou@gcc.gnu.org>
Subject:
PR ld/22972 on SPARC.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f8/f8745e1cd139b5c6a5bd8a30ea84ccbd45dec81c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/sigstep-threads.exp: step 11
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-28 9:04 [binutils-gdb] Enhance the AARCH64 assembler to support LDFF1xx instructions which use REG+REG addressing with an assumed offset register sergiodj+buildbot
@ 2018-03-28 11:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-28 11:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3039>
Commit(s) tested:
c8d59609b1cf66eaff3c486e483f5e3d647c66ff
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Enhance the AARCH64 assembler to support LDFF1xx instructions which use REG+REG addressing with an assumed offset register.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c8/c8d59609b1cf66eaff3c486e483f5e3d647c66ff/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-27 17:14 [binutils-gdb] Remove cleanups from gdb_readline_wrapper sergiodj+buildbot
@ 2018-03-28 7:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-28 7:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3037>
Commit(s) tested:
1dbeed45b6a81ddcb725b68ff12236e7c8386a47
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanups from gdb_readline_wrapper
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1d/1dbeed45b6a81ddcb725b68ff12236e7c8386a47/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-27 15:13 [binutils-gdb] Include <cmath> in dwarf-index-write.c sergiodj+buildbot
@ 2018-03-28 4:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-28 4:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3035>
Commit(s) tested:
608219fb2917d407058952adf164eb616880662b
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Include <cmath> in dwarf-index-write.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/60/608219fb2917d407058952adf164eb616880662b/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-27 14:24 [binutils-gdb] Move DWARF index-related things to a separate file sergiodj+buildbot
@ 2018-03-28 2:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-28 2: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/3033>
Commit(s) tested:
cd4fb1b2ffc88911e4109444ff729e31920d01ec
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Move DWARF index-related things to a separate file
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cd/cd4fb1b2ffc88911e4109444ff729e31920d01ec/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-27 14:13 [binutils-gdb] problem looking up some symbols when they have a linkage name sergiodj+buildbot
@ 2018-03-28 0:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-28 0:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3032>
Commit(s) tested:
59cc4834e53565da1de4a7b615ed8890ed55c7da
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
problem looking up some symbols when they have a linkage name
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/59/59cc4834e53565da1de4a7b615ed8890ed55c7da/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-27 7:12 [binutils-gdb] Simplify exception handling in py-framefilter.c sergiodj+buildbot
@ 2018-03-27 22:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-27 22:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3030>
Commit(s) tested:
76c939acfd21928957b45816bf78935363438b0a
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Simplify exception handling in py-framefilter.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/76/76c939acfd21928957b45816bf78935363438b0a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-27 6:58 [binutils-gdb] Improve "backtrace" help text sergiodj+buildbot
@ 2018-03-27 20:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-27 20:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3029>
Commit(s) tested:
9507b29c0a00fb62f015fe69f82aaf8f5377ab35
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Improve "backtrace" help text
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/95/9507b29c0a00fb62f015fe69f82aaf8f5377ab35/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-27 6:44 [binutils-gdb] Call wrap_hint in one more spot in py-framefilter.c sergiodj+buildbot
@ 2018-03-27 19:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-27 19:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3028>
Commit(s) tested:
eb68e48764d4b038858dd4255ed248dbee6c4c0e
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Call wrap_hint in one more spot in py-framefilter.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/eb/eb68e48764d4b038858dd4255ed248dbee6c4c0e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-27 6:17 [binutils-gdb] Move some code later in backtrace_command_1 sergiodj+buildbot
@ 2018-03-27 16:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-27 16:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3026>
Commit(s) tested:
fb7eb8b5826f059e2b7a18e42ff9c20972e626bc
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Move some code later in backtrace_command_1
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fb/fb7eb8b5826f059e2b7a18e42ff9c20972e626bc/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-27 5:17 [binutils-gdb] Avoid manual resource management in py-framefilter.c sergiodj+buildbot
@ 2018-03-27 11:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-27 11:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3023>
Commit(s) tested:
7a630bc2f99fcd55ddd83274574531d526ca1925
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Avoid manual resource management in py-framefilter.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7a/7a630bc2f99fcd55ddd83274574531d526ca1925/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-27 4:49 [binutils-gdb] Allow hiding of some filtered frames sergiodj+buildbot
@ 2018-03-27 8:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-27 8:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3021>
Commit(s) tested:
978d6c756fcb0332ddf12e19305dd0e53b98a93d
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Allow hiding of some filtered frames
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/97/978d6c756fcb0332ddf12e19305dd0e53b98a93d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-27 4:34 [binutils-gdb] Change backtrace_command_1 calling to use flags sergiodj+buildbot
@ 2018-03-27 6:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-27 6:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3020>
Commit(s) tested:
1cf7e64086d1490649dc56e1c0505be91c600218
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change backtrace_command_1 calling to use flags
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1c/1cf7e64086d1490649dc56e1c0505be91c600218/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-27 4:21 [binutils-gdb] Rationalize "backtrace" command line parsing sergiodj+buildbot
@ 2018-03-27 5:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-27 5:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3019>
Commit(s) tested:
ea3b06874c8a1037bad4fd5b9396d196e6963ac6
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Rationalize "backtrace" command line parsing
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ea/ea3b06874c8a1037bad4fd5b9396d196e6963ac6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-26 11:05 [binutils-gdb] Make gdbserver reg_defs a vector of objects sergiodj+buildbot
@ 2018-03-26 12:13 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-26 12:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3015>
Commit(s) tested:
5cd3e386e0ac84b0ba1e0737853f4504ba24f677
Author(s) (in the same order as the commits):
Alan Hayward <alan.hayward@arm.com>
Subject:
Make gdbserver reg_defs a vector of objects
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5c/5cd3e386e0ac84b0ba1e0737853f4504ba24f677/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-24 3:23 [binutils-gdb] aarch64: Make "info address" resolve TLS variables sergiodj+buildbot
@ 2018-03-24 4:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-24 4:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3011>
Commit(s) tested:
bce02d8884d6baa72c537d0d7c59f924cb290799
Author(s) (in the same order as the commits):
Weimin Pan <weimin.pan@oracle.com>
Subject:
aarch64: Make "info address" resolve TLS variables
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bc/bce02d8884d6baa72c537d0d7c59f924cb290799/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-23 13:00 [binutils-gdb] gdb: Fix testsuite issue in gdb.arch/amd64-disp-step-avx.exp sergiodj+buildbot
@ 2018-03-23 15:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-23 15:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3007>
Commit(s) tested:
376be529a7c99a70050bc48c51d891f1bea9777f
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb: Fix testsuite issue in gdb.arch/amd64-disp-step-avx.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/37/376be529a7c99a70050bc48c51d891f1bea9777f/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-23 12:14 [binutils-gdb] gdb: Minor cleanup in some gdb.arch/* tests sergiodj+buildbot
@ 2018-03-23 14:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-23 14:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3006>
Commit(s) tested:
066cfa988ddf88ad32b7a114f2e984a13a3848c8
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb: Minor cleanup in some gdb.arch/* tests
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/06/066cfa988ddf88ad32b7a114f2e984a13a3848c8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-23 9:56 [binutils-gdb] Testsuite: fully migrate to use_gdb_stub convenience func sergiodj+buildbot
@ 2018-03-23 11:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-23 11:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3004>
Commit(s) tested:
079670b94ade4b5792fa74b29a6b5b4626f27185
Author(s) (in the same order as the commits):
Andreas Arnez <arnez@linux.vnet.ibm.com>
Subject:
Testsuite: fully migrate to use_gdb_stub convenience func
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/07/079670b94ade4b5792fa74b29a6b5b4626f27185/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-23 3:37 [binutils-gdb] Remove some cleanups from record-full.c sergiodj+buildbot
@ 2018-03-23 4:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-23 4:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3003>
Commit(s) tested:
a2b2bc12af45f48617729c1413a1a01c0ee957ca
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove some cleanups from record-full.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a2/a2b2bc12af45f48617729c1413a1a01c0ee957ca/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-22 13:54 [binutils-gdb] ppc: Fix stwux and stdux masks in skip_prologue sergiodj+buildbot
@ 2018-03-22 20:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-22 20:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3002>
Commit(s) tested:
7a8f494c7b171f6cbad20a14ef03a5d7acaa6ccb
Author(s) (in the same order as the commits):
Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
Subject:
ppc: Fix stwux and stdux masks in skip_prologue
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7a/7a8f494c7b171f6cbad20a14ef03a5d7acaa6ccb/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-22 13:41 [binutils-gdb] ppc: Detect when LR is saved through frame pointer sergiodj+buildbot
@ 2018-03-22 19:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-22 19:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/3001>
Commit(s) tested:
dd6d677f0b06341dce90d259785c9d513d2e3935
Author(s) (in the same order as the commits):
Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
Subject:
ppc: Detect when LR is saved through frame pointer
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/dd/dd6d677f0b06341dce90d259785c9d513d2e3935/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-22 9:20 [binutils-gdb] S390: Correct brace style in s390_get_wordsize sergiodj+buildbot
@ 2018-03-22 16:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-22 16:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2999>
Commit(s) tested:
f69c5afb18871a773af88484a24d7da12c3a104c
Author(s) (in the same order as the commits):
Andreas Arnez <arnez@linux.vnet.ibm.com>
Subject:
S390: Correct brace style in s390_get_wordsize
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f6/f69c5afb18871a773af88484a24d7da12c3a104c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-22 8:31 [binutils-gdb] x86: drop remaining redundant DispN sergiodj+buildbot
@ 2018-03-22 13:47 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-22 13:47 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2997>
Commit(s) tested:
96bc132a736fe44cc021d5d4e8ed6780b9520f22
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: drop remaining redundant DispN
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/96/96bc132a736fe44cc021d5d4e8ed6780b9520f22/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-22 8:17 [binutils-gdb] x86: fix swapped operand handling for BNDMOV sergiodj+buildbot
@ 2018-03-22 12:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-22 12:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2996>
Commit(s) tested:
9f79e88693dae859f838bcf684158e6e6f8f3b6b
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: fix swapped operand handling for BNDMOV
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9f/9f79e88693dae859f838bcf684158e6e6f8f3b6b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-22 8:02 [binutils-gdb] x86/Intel: fix fallout from earlier template folding sergiodj+buildbot
@ 2018-03-22 11:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-22 11:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2995>
Commit(s) tested:
d6793fa1acf384a93c83db6eb916e3b9eedd9ef4
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86/Intel: fix fallout from earlier template folding
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d6/d6793fa1acf384a93c83db6eb916e3b9eedd9ef4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-22 4:50 [binutils-gdb] Make parse_static_tracepoint_marker_definition work with multiple static tracepoint definitions sergiodj+buildbot
@ 2018-03-22 5:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-22 5:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2992>
Commit(s) tested:
62c222b6d9fcce8adf65f48fca2e528f777afeeb
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make parse_static_tracepoint_marker_definition work with multiple static tracepoint definitions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/62/62c222b6d9fcce8adf65f48fca2e528f777afeeb/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-21 20:49 [binutils-gdb] Add myself as a write-after-approval GDB maintainer sergiodj+buildbot
@ 2018-03-22 0:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-22 0:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2991>
Commit(s) tested:
7eb2418fa4641c60f6713986de7d3a50fd7a22c0
Author(s) (in the same order as the commits):
Pedro Franco de Carvalho <pedromfc@linux.vnet.ibm.com>
Subject:
Add myself as a write-after-approval GDB maintainer.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7e/7eb2418fa4641c60f6713986de7d3a50fd7a22c0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-21 20:10 [binutils-gdb] DT_FLAGS_1: Add Solaris bits sergiodj+buildbot
@ 2018-03-21 23:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-21 23:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2990>
Commit(s) tested:
b1202ffa53484b65d95787fddef1bc6175e05ca9
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
DT_FLAGS_1: Add Solaris bits
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b1/b1202ffa53484b65d95787fddef1bc6175e05ca9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-21 12:27 [binutils-gdb] PowerPC64 synthetic symbols sergiodj+buildbot
@ 2018-03-21 18:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-21 18:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2986>
Commit(s) tested:
0ccf57bd817a73e7d7cef714039f1302fa5298ec
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PowerPC64 synthetic symbols
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0c/0ccf57bd817a73e7d7cef714039f1302fa5298ec/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-21 11:59 [binutils-gdb] Make tls_mask unsigned in elf32-ppc.c sergiodj+buildbot
@ 2018-03-21 15:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-21 15:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2984>
Commit(s) tested:
bac3c8c5e7fb88ddb3615b895ad57847b9842171
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Make tls_mask unsigned in elf32-ppc.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ba/bac3c8c5e7fb88ddb3615b895ad57847b9842171/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-21 11:32 [binutils-gdb] Don't exceed reloc array bounds sergiodj+buildbot
@ 2018-03-21 12:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-21 12:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2982>
Commit(s) tested:
675e28092f9d92c56c38d40d13ad5b766bdede05
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Don't exceed reloc array bounds
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/67/675e28092f9d92c56c38d40d13ad5b766bdede05/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-20 14:14 [binutils-gdb] Replace the linear search in find_pc_sect_line with a binary search sergiodj+buildbot
@ 2018-03-20 15:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-20 15:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2980>
Commit(s) tested:
4ee89e903de920496a69c01df70db13a70a2a0be
Author(s) (in the same order as the commits):
Stephen Roberts <stephen.roberts@arm.com>
Subject:
Replace the linear search in find_pc_sect_line with a binary search.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4e/4ee89e903de920496a69c01df70db13a70a2a0be/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-19 17:31 [binutils-gdb] Support bare-identifier field initializers in Rust sergiodj+buildbot
@ 2018-03-19 18:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-19 18:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2978>
Commit(s) tested:
926300415b642367cdc2febac6619f8cb8a80b46
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Support bare-identifier field initializers in Rust
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/92/926300415b642367cdc2febac6619f8cb8a80b46/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-19 11:10 [binutils-gdb] Updated Spanish translation for the bfd/ sub-directory, and updated Ukranian translation for the gas/ sub-directory sergiodj+buildbot
@ 2018-03-19 12:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-19 12:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2975>
Commit(s) tested:
315aa1cf834a3d78a567263fa3fbda9b2027457e
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Updated Spanish translation for the bfd/ sub-directory, and updated Ukranian translation for the gas/ sub-directory.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/31/315aa1cf834a3d78a567263fa3fbda9b2027457e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-19 4:11 [binutils-gdb] Remove some cleanups from solib.c sergiodj+buildbot
@ 2018-03-19 5:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-19 5:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2974>
Commit(s) tested:
1cb1f3dae747fef1a576fe38078891e545fa92e5
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove some cleanups from solib.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1c/1cb1f3dae747fef1a576fe38078891e545fa92e5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-16 21:30 [binutils-gdb] Add silent Makefile rules sergiodj+buildbot
@ 2018-03-16 23:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-16 23:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2970>
Commit(s) tested:
39be3c7e98728df57cfddd37fb7747f1339a319b
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Add silent Makefile rules
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/39/39be3c7e98728df57cfddd37fb7747f1339a319b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-16 2:19 [binutils-gdb] Add selftest for substitute_path_component sergiodj+buildbot
@ 2018-03-16 3:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-16 3:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2967>
Commit(s) tested:
03afa6ef8ac9e5acfa68b1005aec6756eaa1d093
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Add selftest for substitute_path_component
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/03/03afa6ef8ac9e5acfa68b1005aec6756eaa1d093/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-15 8:04 [binutils-gdb] nds32: Remove the unsupported target feature sergiodj+buildbot
@ 2018-03-15 9:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-15 9:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2965>
Commit(s) tested:
f9671640954362a918c669700bcc9a57be25782d
Author(s) (in the same order as the commits):
Kuan-Lin Chen <kuanlinchentw@gmail.com>
Subject:
nds32: Remove the unsupported target feature.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f9/f9671640954362a918c669700bcc9a57be25782d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-14 16:46 [binutils-gdb] Special case NULL when using printf's %s format sergiodj+buildbot
@ 2018-03-14 19:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-14 19:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2963>
Commit(s) tested:
3ae9ce5dd7d1119ca2c94c63a07b04921048ebe3
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Special case NULL when using printf's %s format
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3a/3ae9ce5dd7d1119ca2c94c63a07b04921048ebe3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-14 17:26 [binutils-gdb] Allow - in %p for printf sergiodj+buildbot
@ 2018-03-14 18:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-14 18:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2962>
Commit(s) tested:
b8c2339b2f46d4885b933b832fc5b37c7ca101a6
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Allow - in %p for printf
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b8/b8c2339b2f46d4885b933b832fc5b37c7ca101a6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-14 16:04 [binutils-gdb] Add usage to printf command sergiodj+buildbot
@ 2018-03-14 17:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-14 17:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2961>
Commit(s) tested:
80ae639d3cc4f1e83f1ad48686f87417c06ca6dc
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Add usage to printf command
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/80/80ae639d3cc4f1e83f1ad48686f87417c06ca6dc/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-14 13:59 [binutils-gdb] Update my email address sergiodj+buildbot
@ 2018-03-14 15:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-14 15:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2960>
Commit(s) tested:
0d671d99a6125e8406e4d06efb58542d3f0aa955
Author(s) (in the same order as the commits):
Yao Qi <qiyao@sourceware.org>
Subject:
Update my email address
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0d/0d671d99a6125e8406e4d06efb58542d3f0aa955/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-14 12:19 [binutils-gdb] PowerPC64 debian bug 886264, out-of-line save/restore functions sergiodj+buildbot
@ 2018-03-14 14:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-14 14:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2959>
Commit(s) tested:
7dda8d3cf3b089bb7e03c4cdbec827fc6a188c88
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PowerPC64 debian bug 886264, out-of-line save/restore functions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7d/7dda8d3cf3b089bb7e03c4cdbec827fc6a188c88/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-13 23:55 [binutils-gdb] Remove two cleanups using std::string sergiodj+buildbot
@ 2018-03-14 0:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-14 0:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2957>
Commit(s) tested:
b577b6af8e7f4cc53e73ee01188d1700fb8d3b82
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove two cleanups using std::string
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b5/b577b6af8e7f4cc53e73ee01188d1700fb8d3b82/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-13 14:19 [binutils-gdb] Prevent memory access violations when attempting to parse an x86_64 PE binary containing corrupt unwind information sergiodj+buildbot
@ 2018-03-13 16:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-13 16:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2955>
Commit(s) tested:
3e33b239450771394fa6c83b67b9de80169f35e8
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Prevent memory access violations when attempting to parse an x86_64 PE binary containing corrupt unwind information.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3e/3e33b239450771394fa6c83b67b9de80169f35e8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-12 22:14 [binutils-gdb] gdb/riscv: Fix some ARI issues sergiodj+buildbot
@ 2018-03-12 23:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-12 23:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2954>
Commit(s) tested:
89a3b63e52be3e9bcf4b3d15e210652a5cb839c5
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb/riscv: Fix some ARI issues
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/89/89a3b63e52be3e9bcf4b3d15e210652a5cb839c5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-12 14:44 [binutils-gdb] Use gdb::byte_vector when reading section data sergiodj+buildbot
@ 2018-03-12 15:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-12 15:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2953>
Commit(s) tested:
984c72381ccd9f950a87d4d7edecc6fa30db8b41
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use gdb::byte_vector when reading section data
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/98/984c72381ccd9f950a87d4d7edecc6fa30db8b41/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-12 3:22 [binutils-gdb] Remove cleanup from build_type_psymtabs_1 sergiodj+buildbot
@ 2018-03-12 4:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-12 4:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2950>
Commit(s) tested:
484cf504af0e9403e3437a5d2c5fb361c73daa90
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanup from build_type_psymtabs_1
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/48/484cf504af0e9403e3437a5d2c5fb361c73daa90/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-09 5:23 [binutils-gdb] Use scoped_fd in more places sergiodj+buildbot
@ 2018-03-09 23:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-09 23:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2946>
Commit(s) tested:
5dc1a7047a77f86de7518a99805af64891d4e22a
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use scoped_fd in more places
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5d/5dc1a7047a77f86de7518a99805af64891d4e22a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-09 0:12 [binutils-gdb] Make find_separate_debug_file* return std::string sergiodj+buildbot
@ 2018-03-09 18:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-09 18:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2942>
Commit(s) tested:
a8dbfd5853e3a5f7f2a3ca817e96d9e0759061a2
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make find_separate_debug_file* return std::string
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a8/a8dbfd5853e3a5f7f2a3ca817e96d9e0759061a2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-08 20:05 [binutils-gdb] x86-64: Also optimize "clr reg64" sergiodj+buildbot
@ 2018-03-09 12:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-09 12:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2937>
Commit(s) tested:
d3d50934a9101416c3106497d6ea9ce548760253
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86-64: Also optimize "clr reg64"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d3/d3d50934a9101416c3106497d6ea9ce548760253/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-08 9:44 [binutils-gdb] x86: fold VEX-encoded GFNI templates sergiodj+buildbot
@ 2018-03-09 2:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-09 2:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2931>
Commit(s) tested:
454172a99e4aebafa2cd42d389cd63a8733a046a
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: fold VEX-encoded GFNI templates
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/45/454172a99e4aebafa2cd42d389cd63a8733a046a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-08 13:06 [binutils-gdb] x86: fold LWP templates sergiodj+buildbot
@ 2018-03-08 21:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-08 21:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2928>
Commit(s) tested:
e7f5c0a99ec597c097cf65e0c8503b7075e32d16
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: fold LWP templates
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e7/e7f5c0a99ec597c097cf65e0c8503b7075e32d16/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail?id=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://git.sergiodj.net/gdb-xfails.git/tree/xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table?id=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-08 9:07 [binutils-gdb] x86: fold FMA and FMA4 templates sergiodj+buildbot
@ 2018-03-08 19:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-08 19:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2926>
Commit(s) tested:
25a4277fec9efb37b107f6bb6c9246f05cd3c348
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: fold FMA and FMA4 templates
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/25/25a4277fec9efb37b107f6bb6c9246f05cd3c348/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-08 8:43 [binutils-gdb] x86: drop bogus NoAVX sergiodj+buildbot
@ 2018-03-08 15:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-08 15:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2923>
Commit(s) tested:
1b193f0b1263a677f630fb419d13fc14a1d99981
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: drop bogus NoAVX
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1b/1b193f0b1263a677f630fb419d13fc14a1d99981/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-08 8:19 [binutils-gdb] x86: drop FloatD sergiodj+buildbot
@ 2018-03-08 12:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-08 12:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2921>
Commit(s) tested:
38e314eb064ae94318deaa9544c2da3f46f5d319
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: drop FloatD
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/38/38e314eb064ae94318deaa9544c2da3f46f5d319/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-08 8:27 [binutils-gdb] x86: bogus VMOVD with 64-bit operands should only allow for registers sergiodj+buildbot
@ 2018-03-08 10:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-08 10:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2919>
Commit(s) tested:
2907c2f55555de6b1df9a0262629003f4856807d
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: bogus VMOVD with 64-bit operands should only allow for registers
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/29/2907c2f55555de6b1df9a0262629003f4856807d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-07 23:02 [binutils-gdb] Return gdb::optional<std::string> from target_fileio_readlink sergiodj+buildbot
@ 2018-03-08 0:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-08 0:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2917>
Commit(s) tested:
e0d3522b888033febd153a4a7d3b7c5c13641f09
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Return gdb::optional<std::string> from target_fileio_readlink
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e0/e0d3522b888033febd153a4a7d3b7c5c13641f09/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-07 17:55 [binutils-gdb] gdb: Add riscv to list of architectures with a save_reggroup sergiodj+buildbot
@ 2018-03-07 19:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-07 19:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2916>
Commit(s) tested:
ea005f31ca7a823680c70a75ae073bee52487859
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb: Add riscv to list of architectures with a save_reggroup
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ea/ea005f31ca7a823680c70a75ae073bee52487859/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-07 17:03 [binutils-gdb] [PR20402][LD][AARCH64]Don't emit RELATIVE relocation for absolute symbols which are resolved at static linking time sergiodj+buildbot
@ 2018-03-07 18:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-07 18:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2915>
Commit(s) tested:
0c1ded8dc0be9c61975e04a0b416b064223f7bda
Author(s) (in the same order as the commits):
Renlin Li <renlin.li@arm.com>
Subject:
[PR20402][LD][AARCH64]Don't emit RELATIVE relocation for absolute symbols which are resolved at static linking time.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0c/0c1ded8dc0be9c61975e04a0b416b064223f7bda/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-07 7:12 [binutils-gdb] XCOFF disassembler sergiodj+buildbot
@ 2018-03-07 9:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-07 9:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2913>
Commit(s) tested:
52fe4420b771a0f3b4fc7c6535bbd6e9b279f775
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
XCOFF disassembler
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/52/52fe4420b771a0f3b4fc7c6535bbd6e9b279f775/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-07 7:01 [binutils-gdb] mips64 rtype_to_howto error status sergiodj+buildbot
@ 2018-03-07 8:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-07 8:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2912>
Commit(s) tested:
0118219e1850a05ceb181a4f47a6906c01c17c83
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
mips64 rtype_to_howto error status
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/01/0118219e1850a05ceb181a4f47a6906c01c17c83/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-06 21:53 [binutils-gdb] Formatting fixes in rust-exp.y sergiodj+buildbot
@ 2018-03-07 3:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-07 3:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2911>
Commit(s) tested:
d8344f3d05565ae24a39a8f02533c396b544a780
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Formatting fixes in rust-exp.y
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d8/d8344f3d05565ae24a39a8f02533c396b544a780/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-06 19:45 [binutils-gdb] gdb/riscv: Remove use of pseudo registers sergiodj+buildbot
@ 2018-03-06 22:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-06 22:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2907>
Commit(s) tested:
d74aff3d95928db6647a11865c396204c50bc157
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb/riscv: Remove use of pseudo registers
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d7/d74aff3d95928db6647a11865c396204c50bc157/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-06 15:28 [binutils-gdb] gdb/riscv: Fix type when reading register from regcache sergiodj+buildbot
@ 2018-03-06 17:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-06 17:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2903>
Commit(s) tested:
b2970c238e24e6239760b72c924ee7dd2df9ccd1
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb/riscv: Fix type when reading register from regcache
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b2/b2970c238e24e6239760b72c924ee7dd2df9ccd1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-06 10:29 [binutils-gdb] gdb/amd64: Ignore zero sized fields when calling functions sergiodj+buildbot
@ 2018-03-06 11:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-06 11:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2899>
Commit(s) tested:
5dc4391345f6e86906a57af1434025cfb47b4100
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb/amd64: Ignore zero sized fields when calling functions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5d/5dc4391345f6e86906a57af1434025cfb47b4100/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-05 1:19 [binutils-gdb] Propagate gdb_disassembly_flags to btrace_print_lines sergiodj+buildbot
@ 2018-03-05 2:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-05 2:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2898>
Commit(s) tested:
3dea1ef72c646d808e5b287e98253f3b8670c450
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Propagate gdb_disassembly_flags to btrace_print_lines
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3d/3dea1ef72c646d808e5b287e98253f3b8670c450/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-04 6:38 [binutils-gdb] Use signal information to determine SIGTRAP type for FreeBSD sergiodj+buildbot
@ 2018-03-04 10:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-04 10:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2896>
Commit(s) tested:
7efba073e2b83803a47fd89e701fe60b98f2debc
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Use signal information to determine SIGTRAP type for FreeBSD.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7e/7efba073e2b83803a47fd89e701fe60b98f2debc/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-04 5:54 [binutils-gdb] Implement "to_stopped_by_hw_breakpoint" for x86 debug registers sergiodj+buildbot
@ 2018-03-04 6:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-04 6:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2894>
Commit(s) tested:
12279366d71627bfbdd74d1a6675dca825d8feca
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Implement "to_stopped_by_hw_breakpoint" for x86 debug registers.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/12/12279366d71627bfbdd74d1a6675dca825d8feca/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-03 5:54 [binutils-gdb] handle_general_set: Remove useless xstrdup sergiodj+buildbot
@ 2018-03-03 13:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-03 13:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2892>
Commit(s) tested:
b9671caf8fe1abd737846edf7dcd627870f986cc
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
handle_general_set: Remove useless xstrdup
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b9/b9671caf8fe1abd737846edf7dcd627870f986cc/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-03 8:16 [binutils-gdb] Remove free_char_ptr_vec sergiodj+buildbot
@ 2018-03-03 11:44 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-03 11:44 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2891>
Commit(s) tested:
54693cf5f11bf292ae308604caf6e866dbb03e6f
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove free_char_ptr_vec
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/54/54693cf5f11bf292ae308604caf6e866dbb03e6f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-03 5:05 [binutils-gdb] Make program_space::deleted_solibs a vector of std::string sergiodj+buildbot
@ 2018-03-03 8:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-03 8:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2889>
Commit(s) tested:
6fb16ce6eaba92b86a22eac58eb0eb61b3fd8804
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make program_space::deleted_solibs a vector of std::string
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6f/6fb16ce6eaba92b86a22eac58eb0eb61b3fd8804/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-03 1:20 [binutils-gdb] opcodes error messages sergiodj+buildbot
@ 2018-03-03 2:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-03 2:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2886>
Commit(s) tested:
a6743a5420aa02a0550b0f7be004f6c06e90ce21
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
opcodes error messages
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a6/a6743a5420aa02a0550b0f7be004f6c06e90ce21/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-02 12:07 [binutils-gdb] [GDB/testsuite] Use %progbits in watch-loc.c sergiodj+buildbot
@ 2018-03-02 13:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-02 13:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2883>
Commit(s) tested:
ecc054c097e7ced281d02ef9632eb0261a410b96
Author(s) (in the same order as the commits):
Thomas Preud'homme <thomas.preudhomme@arm.com>
Subject:
[GDB/testsuite] Use %progbits in watch-loc.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ec/ecc054c097e7ced281d02ef9632eb0261a410b96/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-02 11:03 [binutils-gdb] Ensure 8-byte alignment for AArch64 stubs sergiodj+buildbot
@ 2018-03-02 12:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-02 12:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2882>
Commit(s) tested:
9a2ebffd4dd9cffac395177e997f6f47408b4782
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
Ensure 8-byte alignment for AArch64 stubs.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9a/9a2ebffd4dd9cffac395177e997f6f47408b4782/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-01 22:37 [binutils-gdb] RISC-V: Fix symbol size bug when relaxation deletes bytes sergiodj+buildbot
@ 2018-03-02 0:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-02 0:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2880>
Commit(s) tested:
788af978df01c3667be99a1607b774f5fa844113
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
RISC-V: Fix symbol size bug when relaxation deletes bytes.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/78/788af978df01c3667be99a1607b774f5fa844113/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-01 16:51 [binutils-gdb] Fix Rust enum test failures sergiodj+buildbot
@ 2018-03-01 18:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-01 18:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2879>
Commit(s) tested:
c7b15a66dc9ef2285f0983759d41baf5b9933505
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Fix Rust enum test failures
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c7/c7b15a66dc9ef2285f0983759d41baf5b9933505/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-03-01 14:29 [binutils-gdb] x86: Encode AVX256/AVX512 vpsub[bwdq] with VEX128/EVEX128 sergiodj+buildbot
@ 2018-03-01 15:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-01 15:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2877>
Commit(s) tested:
8305403a1ffa8e551fd1c7bd88af1a65c0ba747c
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Encode AVX256/AVX512 vpsub[bwdq] with VEX128/EVEX128
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/83/8305403a1ffa8e551fd1c7bd88af1a65c0ba747c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-28 23:16 [binutils-gdb] correct ft32 reloc range test sergiodj+buildbot
@ 2018-03-01 7:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-01 7:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2871>
Commit(s) tested:
5224fa039966557e869338d2591e7945cdcecb74
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
correct ft32 reloc range test
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/52/5224fa039966557e869338d2591e7945cdcecb74/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-28 17:06 [binutils-gdb] Make gdbserver work with filename-only binaries sergiodj+buildbot
@ 2018-03-01 4:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-01 4:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2869>
Commit(s) tested:
25e3c82c0e927398e759e2d5e35623012b8683f7
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/Ubuntu-AArch32-m32/25/25e3c82c0e927398e759e2d5e35623012b8683f7/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-28 17:02 [binutils-gdb] Create new common/pathstuff.[ch] sergiodj+buildbot
@ 2018-03-01 3:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-01 3:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2868>
Commit(s) tested:
b4987c956dfa44ca9fd8552f63e15f5fa094b2a4
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/Ubuntu-AArch32-m32/b4/b4987c956dfa44ca9fd8552f63e15f5fa094b2a4/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/non-stop-fair-events.exp: signal_thread=2: thread 11 broke out of loop
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-28 12:18 [binutils-gdb] Catch integer overflows/underflows when parsing corrupt DWARF FORM blocks sergiodj+buildbot
@ 2018-03-01 0:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-03-01 0:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2866>
Commit(s) tested:
12c963421d045a127c413a0722062b9932c50aa9
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Catch integer overflows/underflows when parsing corrupt DWARF FORM blocks.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/12/12c963421d045a127c413a0722062b9932c50aa9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-28 12:05 [binutils-gdb] PR22887, null pointer dereference in aout_32_swap_std_reloc_out sergiodj+buildbot
@ 2018-02-28 23:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-28 23:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2865>
Commit(s) tested:
116acb2c268c89c89186673a7c92620d21825b25
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22887, null pointer dereference in aout_32_swap_std_reloc_out
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/11/116acb2c268c89c89186673a7c92620d21825b25/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-28 7:57 [binutils-gdb] Nonsense error messages on invalid aout string offset sergiodj+buildbot
@ 2018-02-28 21:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-28 21:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2863>
Commit(s) tested:
0d329c0a83a23cebb86fbe0ebddd780dc0df2424
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Nonsense error messages on invalid aout string offset
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0d/0d329c0a83a23cebb86fbe0ebddd780dc0df2424/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-27 19:20 [binutils-gdb] Change target_write_memory_blocks to use std::vector sergiodj+buildbot
@ 2018-02-28 15:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-28 15:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2859>
Commit(s) tested:
55089490f79ce1ddb9610fd6abeeaf896825fb71
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change target_write_memory_blocks to use std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/55/55089490f79ce1ddb9610fd6abeeaf896825fb71/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-27 16:46 [binutils-gdb] Explicitly specify common tdesc.h for use with aarch64.h sergiodj+buildbot
@ 2018-02-28 13:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-28 13:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2857>
Commit(s) tested:
0c305b6176408347afd8452abb8fe974a7e3f999
Author(s) (in the same order as the commits):
Alan Hayward <alan.hayward@arm.com>
Subject:
Explicitly specify common tdesc.h for use with aarch64.h
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0c/0c305b6176408347afd8452abb8fe974a7e3f999/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-27 12:32 [binutils-gdb] Use standardized error message for unrecognized relocs sergiodj+buildbot
@ 2018-02-28 9:53 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-28 9:53 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2855>
Commit(s) tested:
e8f5af786c7665141f6644998b8c427ad466d474
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Use standardized error message for unrecognized relocs.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e8/e8f5af786c7665141f6644998b8c427ad466d474/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-27 10:41 [binutils-gdb] Have info_to_howto functions return a success/fail status. Check this result. Stop strip from completeing if one of these functions fails sergiodj+buildbot
@ 2018-02-28 8:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-28 8: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/2854>
Commit(s) tested:
f3185997ac0951edac802e29df03dfc0844fda34
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Have info_to_howto functions return a success/fail status. Check this result. Stop strip from completeing if one of these functions fails.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f3/f3185997ac0951edac802e29df03dfc0844fda34/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 20:30 [binutils-gdb] MIPS: Don't use a 32-bit BFD architecture with a 64-bit ABI sergiodj+buildbot
@ 2018-02-28 3:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-28 3:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2850>
Commit(s) tested:
c5196c9298b7df29652c0ebe24a43ac6c9c76b0d
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
MIPS: Don't use a 32-bit BFD architecture with a 64-bit ABI
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c5/c5196c9298b7df29652c0ebe24a43ac6c9c76b0d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 18:06 [binutils-gdb] Change frame_filter_flags to use DEF_ENUM_FLAGS_TYPE sergiodj+buildbot
@ 2018-02-28 0:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-28 0:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2848>
Commit(s) tested:
d4dd32824a1194718c81773804017ab546cb3aab
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change frame_filter_flags to use DEF_ENUM_FLAGS_TYPE
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d4/d4dd32824a1194718c81773804017ab546cb3aab/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 17:54 [binutils-gdb] Make "bt N" print correct number of frames when using a frame filter sergiodj+buildbot
@ 2018-02-27 21:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-27 21:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2847>
Commit(s) tested:
6893c19a8b81a399953edbf26aaef6e714a7ab0e
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Make "bt N" print correct number of frames when using a frame filter
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/68/6893c19a8b81a399953edbf26aaef6e714a7ab0e/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: other threads didn't run - locked
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-27 0:14 [binutils-gdb] Handle DW_TAG_variant_part and DW_TAG_variant sergiodj+buildbot
@ 2018-02-27 19:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-27 19:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2846>
Commit(s) tested:
2ddeaf8a7d64094f4caf6cdc412d8162f49f73a1
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Handle DW_TAG_variant_part and DW_TAG_variant
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2d/2ddeaf8a7d64094f4caf6cdc412d8162f49f73a1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 21:31 [binutils-gdb] Convert Rust to use discriminated unions sergiodj+buildbot
@ 2018-02-27 17:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-27 17:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2845>
Commit(s) tested:
c9317f214b274b805190b8e878c79f4181d93bb4
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Convert Rust to use discriminated unions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c9/c9317f214b274b805190b8e878c79f4181d93bb4/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 17:16 [binutils-gdb] Initial support for variant parts sergiodj+buildbot
@ 2018-02-27 15:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-27 15:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2844>
Commit(s) tested:
7c22600aabfd10e190e98fff0b7c2d69cd191325
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Initial support for variant parts
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7c/7c22600aabfd10e190e98fff0b7c2d69cd191325/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 18:41 [binutils-gdb] Move read_partial_die to partial_die_info::read sergiodj+buildbot
@ 2018-02-27 11:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-27 11:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2842>
Commit(s) tested:
48fbe735fb8f0e65976d2b9dd345bf2f947ad258
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Move read_partial_die to partial_die_info::read
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/48/48fbe735fb8f0e65976d2b9dd345bf2f947ad258/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 12:02 [binutils-gdb] Move arch/tdesc.h to common/tdesc.h sergiodj+buildbot
@ 2018-02-26 23:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-26 23:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2835>
Commit(s) tested:
f46cd62a69b8050c7c30a53b29a781a9b5e9f062
Author(s) (in the same order as the commits):
Alan Hayward <alan.hayward@arm.com>
Subject:
Move arch/tdesc.h to common/tdesc.h
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f4/f46cd62a69b8050c7c30a53b29a781a9b5e9f062/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 1:53 [binutils-gdb] Segfault on phdrs allocated but not created sergiodj+buildbot
@ 2018-02-26 21:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-26 21:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2834>
Commit(s) tested:
6838f2bed6459514c1b0c549e6aa3fc7dbb1d7ec
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Segfault on phdrs allocated but not created
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/68/6838f2bed6459514c1b0c549e6aa3fc7dbb1d7ec/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 1:40 [binutils-gdb] crx string overflow warning sergiodj+buildbot
@ 2018-02-26 19:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-26 19:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2833>
Commit(s) tested:
e95b887f85a192eb1597cd5d358673520029ad14
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
crx string overflow warning
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e9/e95b887f85a192eb1597cd5d358673520029ad14/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 1:28 [binutils-gdb] assorted target messages sergiodj+buildbot
@ 2018-02-26 16:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-26 16:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2832>
Commit(s) tested:
38f14ab8fcfa4eab8bab417a5a165b7403ef9b0e
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
assorted target messages
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/38/38f14ab8fcfa4eab8bab417a5a165b7403ef9b0e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 1:16 [binutils-gdb] BFD messages sergiodj+buildbot
@ 2018-02-26 14:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-26 14:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2831>
Commit(s) tested:
6e05870c978aaa057b5ae0f525a2e9b803047ac8
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
BFD messages
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6e/6e05870c978aaa057b5ae0f525a2e9b803047ac8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 1:03 [binutils-gdb] AOUT/COFF/PE messages sergiodj+buildbot
@ 2018-02-26 12:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-26 12:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2830>
Commit(s) tested:
59d08d6ce8cb6c41691266e133304c961c270e85
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
AOUT/COFF/PE messages
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/59/59d08d6ce8cb6c41691266e133304c961c270e85/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 0:38 [binutils-gdb] MIPS messages sergiodj+buildbot
@ 2018-02-26 7:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-26 7:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2828>
Commit(s) tested:
2c1c96795601a19554fa3a86700a1b9e9d57c931
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
MIPS messages
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2c/2c1c96795601a19554fa3a86700a1b9e9d57c931/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 0:14 [binutils-gdb] ELF linker messages sergiodj+buildbot
@ 2018-02-26 5:49 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-26 5:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2827>
Commit(s) tested:
9793eb77929a4ab2c0192d9bf5d3f8d20dd17394
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
ELF linker messages
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/97/9793eb77929a4ab2c0192d9bf5d3f8d20dd17394/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-26 0:13 [binutils-gdb] unrecognized/unsupported reloc message sergiodj+buildbot
@ 2018-02-26 3:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-26 3:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2826>
Commit(s) tested:
0aa13feeeb78fc9323bee329c4d91c30f25de121
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
unrecognized/unsupported reloc message
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0a/0aa13feeeb78fc9323bee329c4d91c30f25de121/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-25 20:37 [binutils-gdb] Fix double space expected in cp_test_ptype_class sergiodj+buildbot
@ 2018-02-25 22:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-25 22:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2824>
Commit(s) tested:
6f6d0c269ecdc11aca9166940534ec61b6dbc39d
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Fix double space expected in cp_test_ptype_class
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6f/6f6d0c269ecdc11aca9166940534ec61b6dbc39d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-24 17:31 [binutils-gdb] Remove most cleanups from linux-thread-db.c sergiodj+buildbot
@ 2018-02-24 21:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-24 21:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2822>
Commit(s) tested:
9b292f68805700c7ae46fc149231fdb79554bd17
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove most cleanups from linux-thread-db.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9b/9b292f68805700c7ae46fc149231fdb79554bd17/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-24 17:19 [binutils-gdb] Remove cleanups from check_fast_tracepoint_sals sergiodj+buildbot
@ 2018-02-24 18:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-24 18:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2821>
Commit(s) tested:
281d762b1a56317171e462666b98d50bfa31a08a
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanups from check_fast_tracepoint_sals
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/28/281d762b1a56317171e462666b98d50bfa31a08a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-23 20:31 [binutils-gdb] GDB/testsuite: Fix a typo in $actual_line sergiodj+buildbot
@ 2018-02-23 23:10 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-23 23:10 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2820>
Commit(s) tested:
11b031457e89d5739922ddd0bc65c9d781b6db35
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
GDB/testsuite: Fix a typo in $actual_line
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/11/11b031457e89d5739922ddd0bc65c9d781b6db35/>
*** Diff to previous build ***
============================
new FAIL: gdb.cp/nested-types.exp: ptype S10
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-23 11:31 [binutils-gdb] PR22881, null pointer dereference in assign_file_positions_for_non_load_sections sergiodj+buildbot
@ 2018-02-23 13:47 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-23 13:47 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2818>
Commit(s) tested:
01f7e10cf2dcf403462b2feed06c43135651556d
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22881, null pointer dereference in assign_file_positions_for_non_load_sections
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/01/01f7e10cf2dcf403462b2feed06c43135651556d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-23 7:38 [binutils-gdb] nds32: Support target directive .ict_model sergiodj+buildbot
@ 2018-02-23 9:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-23 9:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2817>
Commit(s) tested:
e859f6558cc027261fb733e4e86938e1d31c13ca
Author(s) (in the same order as the commits):
Kuan-Lin Chen <kuanlinchentw@gmail.com>
Subject:
nds32: Support target directive .ict_model.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e8/e859f6558cc027261fb733e4e86938e1d31c13ca/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-22 22:16 [binutils-gdb] New plugin interface to get list of symbols wrapped with --wrap option sergiodj+buildbot
@ 2018-02-23 2:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-23 2:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2816>
Commit(s) tested:
0b65c07b97c43e8891c2e14061270878a85222c8
Author(s) (in the same order as the commits):
Sriraman Tallam <tmsriram@google.com>
Subject:
New plugin interface to get list of symbols wrapped with --wrap option.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0b/0b65c07b97c43e8891c2e14061270878a85222c8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-22 14:40 [binutils-gdb] x86: Add {rex} pseudo prefix sergiodj+buildbot
@ 2018-02-22 23:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-22 23:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2814>
Commit(s) tested:
6b6b680700699c15e22b6c36975729035676eef1
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Add {rex} pseudo prefix
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6b/6b6b680700699c15e22b6c36975729035676eef1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-21 19:23 [binutils-gdb] Add "common-defs.h" include to files in arch/ subdir not yet including it sergiodj+buildbot
@ 2018-02-22 18:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-22 18:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2812>
Commit(s) tested:
8ec57239e91f22f427f8065eb742e6c8bfa223f1
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Add "common-defs.h" include to files in arch/ subdir not yet including it.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8e/8ec57239e91f22f427f8065eb742e6c8bfa223f1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-21 16:31 [binutils-gdb] Remove a cleanup from parse_expression_for_completion sergiodj+buildbot
@ 2018-02-22 16:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-22 16:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2811>
Commit(s) tested:
3eac2b654808f9e233885f910045eea9d2ca0aa0
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove a cleanup from parse_expression_for_completion
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3e/3eac2b654808f9e233885f910045eea9d2ca0aa0/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-21 17:11 [binutils-gdb] Remove a cleanup from call_function_by_hand_dummy sergiodj+buildbot
@ 2018-02-22 13:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-22 13:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2810>
Commit(s) tested:
6ccb583f751e020a6db768d517c2dd3ba6d93cc4
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove a cleanup from call_function_by_hand_dummy
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6c/6ccb583f751e020a6db768d517c2dd3ba6d93cc4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-21 13:27 [binutils-gdb] Pass readable_regcache to gdbarch method read_pc sergiodj+buildbot
@ 2018-02-22 10:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-22 10:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2809>
Commit(s) tested:
c113ed0ca238bbcbc161f059ffe9b064e3ece333
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Pass readable_regcache to gdbarch method read_pc
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c1/c113ed0ca238bbcbc161f059ffe9b064e3ece333/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-21 15:39 [binutils-gdb] Move register_dump to regcache-dump.c sergiodj+buildbot
@ 2018-02-22 8:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-22 8:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2808>
Commit(s) tested:
4c74fe6b84d82066eb3f004bacd4a376cd82d140
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Move register_dump to regcache-dump.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4c/4c74fe6b84d82066eb3f004bacd4a376cd82d140/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-21 12:50 [binutils-gdb] No longer create readonly regcache sergiodj+buildbot
@ 2018-02-22 4:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-22 4:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2806>
Commit(s) tested:
215c69dc9a7d8f868198b5523abcf41458fb6e4a
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
No longer create readonly regcache
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/21/215c69dc9a7d8f868198b5523abcf41458fb6e4a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-21 12:25 [binutils-gdb] Class detached_regcache sergiodj+buildbot
@ 2018-02-22 0:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-22 0:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2804>
Commit(s) tested:
c8ec2f334c3751c28d5f952d07dea9c0558ca0a0
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Class detached_regcache
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c8/c8ec2f334c3751c28d5f952d07dea9c0558ca0a0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-21 12:12 [binutils-gdb] Class readonly_detached_regcache sergiodj+buildbot
@ 2018-02-21 21:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-21 21:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2803>
Commit(s) tested:
daf6667d1f94c7e74df4076daf021cd28a2797b6
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Class readonly_detached_regcache
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/da/daf6667d1f94c7e74df4076daf021cd28a2797b6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-21 12:00 [binutils-gdb] Remove regcache_save and regcache_cpy sergiodj+buildbot
@ 2018-02-21 19:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-21 19:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2802>
Commit(s) tested:
fc5b87361580d915e28ae5f3cc4794b75b671b5a
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Remove regcache_save and regcache_cpy
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fc/fc5b87361580d915e28ae5f3cc4794b75b671b5a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-21 11:47 [binutils-gdb] class readable_regcache and pass readable_regcache to gdbarch pseudo_register_read and pseudo_register_read_value sergiodj+buildbot
@ 2018-02-21 16:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-21 16:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2801>
Commit(s) tested:
849d0ba802323fe05e3039ed5b22957db2c85a67
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
class readable_regcache and pass readable_regcache to gdbarch pseudo_register_read and pseudo_register_read_value
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/84/849d0ba802323fe05e3039ed5b22957db2c85a67/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-21 11:39 [binutils-gdb] Class reg_buffer sergiodj+buildbot
@ 2018-02-21 13:53 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-21 13:53 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2800>
Commit(s) tested:
31716595b5bda8524fc841378468fd1c47510dd3
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Class reg_buffer
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/31/31716595b5bda8524fc841378468fd1c47510dd3/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-thread_db.exp: continue to end
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-20 21:11 [binutils-gdb] MIPS16/opcodes: Free up `M' operand code sergiodj+buildbot
@ 2018-02-20 23:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-20 23:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2799>
Commit(s) tested:
75f31665204bf965cc5b3dd699636be12fb6bcfa
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
MIPS16/opcodes: Free up `M' operand code
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/75/75f31665204bf965cc5b3dd699636be12fb6bcfa/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-20 16:58 [binutils-gdb] remote-sim: Add missing ATTRIBUTE_PRINTF sergiodj+buildbot
@ 2018-02-20 20:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-20 20:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2798>
Commit(s) tested:
7104e59bece90e387d70f617eb7ed4c34087283d
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
remote-sim: Add missing ATTRIBUTE_PRINTF
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/71/7104e59bece90e387d70f617eb7ed4c34087283d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.threads/sigstep-threads.exp: step 27
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-20 14:56 [binutils-gdb] Enable link time garbage collection support for the IA64 target sergiodj+buildbot
@ 2018-02-20 19:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-20 19:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2797>
Commit(s) tested:
6e8d06db1a6e63e0da80035114dbfefeabf63d87
Author(s) (in the same order as the commits):
Jason Duerstock <jason.duerstock@gmail.com>
Subject:
Enable link time garbage collection support for the IA64 target.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6e/6e8d06db1a6e63e0da80035114dbfefeabf63d87/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-20 11:13 [binutils-gdb] Fix make 3.81 build errors sergiodj+buildbot
@ 2018-02-20 13:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-20 13:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2794>
Commit(s) tested:
a543c5ca7c1285548726e6d92ca6044dc1963340
Author(s) (in the same order as the commits):
Alan Hayward <alan.hayward@arm.com>
Subject:
Fix make 3.81 build errors
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a5/a543c5ca7c1285548726e6d92ca6044dc1963340/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-19 3:38 [binutils-gdb] PT_LOAD and PT_GNU_RELRO segment overlap sergiodj+buildbot
@ 2018-02-19 5:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-19 5:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2782>
Commit(s) tested:
dbc88fc14992c556b94e77de563a8f7abcb0b653
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PT_LOAD and PT_GNU_RELRO segment overlap
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/db/dbc88fc14992c556b94e77de563a8f7abcb0b653/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-16 16:34 [binutils-gdb] New class allocate_on_obstack sergiodj+buildbot
@ 2018-02-16 18:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-16 18:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2779>
Commit(s) tested:
fd90ace4c1e77c94e90d2942cebe84e9a2019c0f
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
New class allocate_on_obstack
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fd/fd90ace4c1e77c94e90d2942cebe84e9a2019c0f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-15 22:04 [binutils-gdb] RISC-V: Fix relocation failure with zero address sections sergiodj+buildbot
@ 2018-02-16 0:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-16 0:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2777>
Commit(s) tested:
09ca4b9d9bd61ecb779386a6cc7796cb05dde1af
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
RISC-V: Fix relocation failure with zero address sections.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/09/09ca4b9d9bd61ecb779386a6cc7796cb05dde1af/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-15 19:14 [binutils-gdb] RISC-V: Give error for ignored pcrel_lo addend sergiodj+buildbot
@ 2018-02-15 21:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-15 21:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2776>
Commit(s) tested:
2a0d98534964649bc6884b7833c6c4089159a6df
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
RISC-V: Give error for ignored pcrel_lo addend.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2a/2a0d98534964649bc6884b7833c6c4089159a6df/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-15 15:29 [binutils-gdb] PR ld/22832 on SPARC sergiodj+buildbot
@ 2018-02-15 20:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-15 20:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2775>
Commit(s) tested:
e513bd38a6b91401947d90ba5f301f01d3991b8e
Author(s) (in the same order as the commits):
Eric Botcazou <ebotcazou@gcc.gnu.org>
Subject:
PR ld/22832 on SPARC.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e5/e513bd38a6b91401947d90ba5f301f01d3991b8e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-15 4:34 [binutils-gdb] delete ada-lang.c::ada_to_fixed_value_create advance declaration sergiodj+buildbot
@ 2018-02-15 5:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-15 5:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2772>
Commit(s) tested:
355c559b74518b67eb113e635363cc890058746c
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
delete ada-lang.c::ada_to_fixed_value_create advance declaration
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/35/355c559b74518b67eb113e635363cc890058746c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-14 19:26 [binutils-gdb] Fix GDB crash after Quit thrown from unwinder sniffer sergiodj+buildbot
@ 2018-02-15 4:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-15 4:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2771>
Commit(s) tested:
980548fd880338d2cdf4ce641ca39632dc040426
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix GDB crash after Quit thrown from unwinder sniffer
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/98/980548fd880338d2cdf4ce641ca39632dc040426/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-14 16:14 [binutils-gdb] Constify target_so_ops::bfd_open sergiodj+buildbot
@ 2018-02-15 2:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-15 2:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2770>
Commit(s) tested:
692d6f9760bc67b68a5c96baac47067fd7dfa711
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify target_so_ops::bfd_open
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/69/692d6f9760bc67b68a5c96baac47067fd7dfa711/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-14 15:50 [binutils-gdb] Move some declarations to source.h sergiodj+buildbot
@ 2018-02-14 22:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-14 22:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2768>
Commit(s) tested:
b46a8d7c1d50c06e641af99b58301db0499111b9
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Move some declarations to source.h
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b4/b46a8d7c1d50c06e641af99b58301db0499111b9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-14 15:37 [binutils-gdb] Return unique_xmalloc_ptr from some solib.c functions sergiodj+buildbot
@ 2018-02-14 19:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-14 19:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2767>
Commit(s) tested:
797bc1cb25b9dbdbc663cf711aecb0acc2450276
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Return unique_xmalloc_ptr from some solib.c functions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/79/797bc1cb25b9dbdbc663cf711aecb0acc2450276/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-14 15:16 [binutils-gdb] Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts sergiodj+buildbot
@ 2018-02-14 17:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-14 17:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2766>
Commit(s) tested:
12ef3f5a7c5a6b89964842fd3da047b8d07dec91
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/12/12ef3f5a7c5a6b89964842fd3da047b8d07dec91/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-13 22:52 [binutils-gdb] x86: Properly check building shared library sergiodj+buildbot
@ 2018-02-14 3:48 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-14 3:48 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2763>
Commit(s) tested:
1031c264fd23641111df1e12a35d0a8f7e82fb80
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Properly check building shared library
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/10/1031c264fd23641111df1e12a35d0a8f7e82fb80/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-13 17:36 [binutils-gdb] Use enum flags for flags passed to openp sergiodj+buildbot
@ 2018-02-14 2:10 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-14 2:10 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2762>
Commit(s) tested:
24b9144d4ba83d37751786b08b48ad62fb7aef26
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Use enum flags for flags passed to openp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/24/24b9144d4ba83d37751786b08b48ad62fb7aef26/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-13 15:51 [binutils-gdb] x86-64: Generate branch with PLT32 relocation sergiodj+buildbot
@ 2018-02-14 0:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-14 0:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2761>
Commit(s) tested:
bd7ab16b4537788ad53521c45469a1bdae84ad4a
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86-64: Generate branch with PLT32 relocation
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bd/bd7ab16b4537788ad53521c45469a1bdae84ad4a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-13 13:43 [binutils-gdb] Fix compile time warning messages from gcc version 8 about cast between incompatible function types sergiodj+buildbot
@ 2018-02-13 20:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-13 20:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2759>
Commit(s) tested:
68d206766637a041bbbeb89c8a1bfdd76317e192
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Fix compile time warning messages from gcc version 8 about cast between incompatible function types.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/68/68d206766637a041bbbeb89c8a1bfdd76317e192/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-13 13:31 [binutils-gdb] WebAssembly: Disable subdirectory configuration for unsupported LD sergiodj+buildbot
@ 2018-02-13 19:13 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-13 19:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2758>
Commit(s) tested:
b29d26411c62fef6b1401aff4f2c6a157053de4d
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
WebAssembly: Disable subdirectory configuration for unsupported LD
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b2/b29d26411c62fef6b1401aff4f2c6a157053de4d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-13 13:28 [binutils-gdb] WebAssembly: Correct an `index' global shadowing error for pre-4.8 GCC sergiodj+buildbot
@ 2018-02-13 16:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-13 16:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2757>
Commit(s) tested:
87993319a56af838d3ab7e251fa4902476ca63c8
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
WebAssembly: Correct an `index' global shadowing error for pre-4.8 GCC
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/87/87993319a56af838d3ab7e251fa4902476ca63c8/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-13 6:47 [binutils-gdb] Fix prefix of maint set/show per-command sergiodj+buildbot
@ 2018-02-13 7:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-13 7:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2754>
Commit(s) tested:
387cd15b93fdca3a66bbda427c4e1d9340bfb532
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Fix prefix of maint set/show per-command
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/38/387cd15b93fdca3a66bbda427c4e1d9340bfb532/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/sigstep-threads.exp: continue
new FAIL: gdb.threads/sigstep-threads.exp: step 39
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-13 0:11 [binutils-gdb] gdb: Remove cleanup from dw2_do_instantiate_symtab sergiodj+buildbot
@ 2018-02-13 2:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-13 2:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2753>
Commit(s) tested:
b303c6f688c6cd1ffd986ae65ac3f2dc11f27b93
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb: Remove cleanup from dw2_do_instantiate_symtab
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b3/b303c6f688c6cd1ffd986ae65ac3f2dc11f27b93/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/gdb-sigterm.exp: 50 SIGTERM passes
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-12 15:14 [binutils-gdb] MIPS: Fix encoding for MIPSr6 sigrie instruction sergiodj+buildbot
@ 2018-02-12 22:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-12 22:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2752>
Commit(s) tested:
d2159fdc0f0ac1d0aaafab725b930e78a8793494
Author(s) (in the same order as the commits):
Henry Wong <henry@stuffedcow.net>
Subject:
MIPS: Fix encoding for MIPSr6 sigrie instruction.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d2/d2159fdc0f0ac1d0aaafab725b930e78a8793494/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-12 13:36 [binutils-gdb] Add support for reading msdos MZ executables sergiodj+buildbot
@ 2018-02-12 19:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-12 19:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2751>
Commit(s) tested:
830db0485e19000985ccfdbacda4d4d5d62583bb
Author(s) (in the same order as the commits):
Zebediah Figura <z.figura12@gmail.com>
Subject:
Add support for reading msdos MZ executables.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/83/830db0485e19000985ccfdbacda4d4d5d62583bb/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-12 12:16 [binutils-gdb] oops - actually remove the assignment this time: bfd/elf32-nds32.c:9693]: (warning) Redundant assignment of 'irel->r_addend' to itself sergiodj+buildbot
@ 2018-02-12 15:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-12 15:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2749>
Commit(s) tested:
6444b19b244d7c84537fc796005ef756917135ae
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
oops - actually remove the assignment this time: bfd/elf32-nds32.c:9693]: (warning) Redundant assignment of 'irel->r_addend' to itself.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/64/6444b19b244d7c84537fc796005ef756917135ae/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/sigstep-threads.exp: continue
new FAIL: gdb.threads/sigstep-threads.exp: step 10
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-09 17:02 [binutils-gdb] x86: Add is_solaris to elf_x86_target_os sergiodj+buildbot
@ 2018-02-11 4:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-11 4:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2746>
Commit(s) tested:
3b4c384407ebbdd9ed4ad5057080b3be038b8748
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Add is_solaris to elf_x86_target_os
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3b/3b4c384407ebbdd9ed4ad5057080b3be038b8748/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-09 19:26 [binutils-gdb] Don't reference past the end of the vector sergiodj+buildbot
@ 2018-02-11 2:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-11 2:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2745>
Commit(s) tested:
9c3630e983df43e68006b526a92c2a9a2b64dfd9
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Don't reference past the end of the vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9c/9c3630e983df43e68006b526a92c2a9a2b64dfd9/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-09 15:25 [binutils-gdb] btrace: reword error messages sergiodj+buildbot
@ 2018-02-10 23:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-10 23:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2744>
Commit(s) tested:
c4e126313219ecde255a644a2c74008831edff5a
Author(s) (in the same order as the commits):
Markus Metzger <markus.t.metzger@intel.com>
Subject:
btrace: reword error messages
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c4/c4e126313219ecde255a644a2c74008831edff5a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-09 15:12 [binutils-gdb] btrace: check perf_event_paranoid sergiodj+buildbot
@ 2018-02-10 21:49 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-10 21:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2743>
Commit(s) tested:
88711fbfeadd6e4663d986962dfcd7ab660c61d1
Author(s) (in the same order as the commits):
Markus Metzger <markus.t.metzger@intel.com>
Subject:
btrace: check perf_event_paranoid
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/88/88711fbfeadd6e4663d986962dfcd7ab660c61d1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-09 15:00 [binutils-gdb] btrace: improve enable error messages sergiodj+buildbot
@ 2018-02-10 19:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-10 19:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2742>
Commit(s) tested:
17ad2a4f466f22b7a75b5ebf8a68446bb328c40c
Author(s) (in the same order as the commits):
Markus Metzger <markus.t.metzger@intel.com>
Subject:
btrace: improve enable error messages
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/17/17ad2a4f466f22b7a75b5ebf8a68446bb328c40c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-09 14:22 [binutils-gdb] btrace: prepare for throwing exceptions when enabling btrace sergiodj+buildbot
@ 2018-02-10 11:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-10 11:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2739>
Commit(s) tested:
5c3284c1ec2edc28b0697532fd094d93d5ecf31b
Author(s) (in the same order as the commits):
Markus Metzger <markus.t.metzger@intel.com>
Subject:
btrace: prepare for throwing exceptions when enabling btrace
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5c/5c3284c1ec2edc28b0697532fd094d93d5ecf31b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-09 12:24 [binutils-gdb] gdb/NEWS: Clarify the news entry for "rbreak" in GDB 8.1 sergiodj+buildbot
@ 2018-02-09 20:49 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-09 20:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2732>
Commit(s) tested:
4e7253479941cd6d59a0c8efbb1113d3734b7f56
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/Ubuntu-AArch32-m32/4e/4e7253479941cd6d59a0c8efbb1113d3734b7f56/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-08 23:17 [binutils-gdb] Remove cleanups from solib.c sergiodj+buildbot
@ 2018-02-09 12:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-09 12:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2728>
Commit(s) tested:
9a897d43f034544cd09292d0fb6fded7eb64ae8d
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanups from solib.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9a/9a897d43f034544cd09292d0fb6fded7eb64ae8d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-08 20:13 [binutils-gdb] Remove cleanups from macro_define_command sergiodj+buildbot
@ 2018-02-09 6:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-09 6:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2725>
Commit(s) tested:
84f27c6fcbbf580434c7d56e68fa42fe7cf7ccb9
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanups from macro_define_command
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/84/84f27c6fcbbf580434c7d56e68fa42fe7cf7ccb9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-08 22:04 [binutils-gdb] Use std::string in maybe_expand sergiodj+buildbot
@ 2018-02-09 5:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-09 5: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/2724>
Commit(s) tested:
0354904bdacb9bf1ebdf3ebdf3723f8a550bcdab
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use std::string in maybe_expand
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/03/0354904bdacb9bf1ebdf3ebdf3723f8a550bcdab/>
*** Diff to previous build ***
============================
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
new FAIL: gdb.threads/sigstep-threads.exp: continue
new FAIL: gdb.threads/sigstep-threads.exp: step 89
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-08 20:47 [binutils-gdb] Class-ify macro_buffer sergiodj+buildbot
@ 2018-02-09 3:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-09 3:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2723>
Commit(s) tested:
1739cf248ff21b21271d1e9d5f77a12589c3856c
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Class-ify macro_buffer
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/17/1739cf248ff21b21271d1e9d5f77a12589c3856c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-08 19:32 [binutils-gdb] Return unique_xmalloc_ptr from macro scope functions sergiodj+buildbot
@ 2018-02-09 1:24 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-09 1:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2722>
Commit(s) tested:
f6c2623eb8ac7296b6d7a76657394272a71f5aee
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Return unique_xmalloc_ptr from macro scope functions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f6/f6c2623eb8ac7296b6d7a76657394272a71f5aee/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: wrong thread not unwound
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-08 19:05 [binutils-gdb] Remove a cleanup from gdbserver sergiodj+buildbot
@ 2018-02-08 20:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-08 20:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2720>
Commit(s) tested:
45dd3607e24aaf515b5d75c666b351575410392b
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove a cleanup from gdbserver
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/45/45dd3607e24aaf515b5d75c666b351575410392b/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/sigstep-threads.exp: continue
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-07 14:04 [binutils-gdb] Fix type of values representing optimized out static members sergiodj+buildbot
@ 2018-02-07 15:30 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-07 15:30 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2718>
Commit(s) tested:
c2e0e465f9488970c7e460a41e3fb7c366530619
Author(s) (in the same order as the commits):
Simon Marchi <simark@simark.ca>
Subject:
Fix type of values representing optimized out static members
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c2/c2e0e465f9488970c7e460a41e3fb7c366530619/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-07 4:11 [binutils-gdb] Revert "PowerPC PLT speculative execution barriers" sergiodj+buildbot
@ 2018-02-07 12:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-07 12:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2717>
Commit(s) tested:
407aa07cee4d075c8e7996a5e994c02e76f19276
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Revert "PowerPC PLT speculative execution barriers"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/40/407aa07cee4d075c8e7996a5e994c02e76f19276/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-07 1:08 [binutils-gdb] RISC-V: Eliminate spurious error w/ reloc truncated message sergiodj+buildbot
@ 2018-02-07 9:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-07 9:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2716>
Commit(s) tested:
ed01220cc81fac2f65abde945d9b77b11d004361
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
RISC-V: Eliminate spurious error w/ reloc truncated message
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ed/ed01220cc81fac2f65abde945d9b77b11d004361/>
*** Diff to previous build ***
============================
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: wrong thread not unwound
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-06 20:29 [binutils-gdb] Remove some $ARCH_read_pc and $ARCH_write_pc sergiodj+buildbot
@ 2018-02-07 7:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-07 7:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2715>
Commit(s) tested:
3f8c94b478c8f2e5c82a1425fd49e977ed969a7f
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Remove some $ARCH_read_pc and $ARCH_write_pc
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3f/3f8c94b478c8f2e5c82a1425fd49e977ed969a7f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-06 17:43 [binutils-gdb] Fix PR ld/22263 on SPARC sergiodj+buildbot
@ 2018-02-07 5:06 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-07 5:06 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2714>
Commit(s) tested:
c20c30f615756ddfccc4bb75c65ccfc1a399466e
Author(s) (in the same order as the commits):
Eric Botcazou <ebotcazou@gcc.gnu.org>
Subject:
Fix PR ld/22263 on SPARC.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c2/c20c30f615756ddfccc4bb75c65ccfc1a399466e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-06 17:17 [binutils-gdb] Improve the find_nearest_line function for the MIPS target so that it tries harder to find a function name sergiodj+buildbot
@ 2018-02-07 0:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-07 0:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2712>
Commit(s) tested:
46d09186d340407fdcf066fea25444682e989512
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Improve the find_nearest_line function for the MIPS target so that it tries harder to find a function name.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/46/46d09186d340407fdcf066fea25444682e989512/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-06 16:48 [binutils-gdb] Prevent attempts to call strncpy with a zero-length field by chacking the size of debuglink sections sergiodj+buildbot
@ 2018-02-06 21:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-06 21:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2710>
Commit(s) tested:
64e234d417d5685a4aec0edc618114d9991c031b
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Prevent attempts to call strncpy with a zero-length field by chacking the size of debuglink sections.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/64/64e234d417d5685a4aec0edc618114d9991c031b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-06 16:04 [binutils-gdb] Allow the find_abstract_instance_name() function in the BFD library to also return file and line number information sergiodj+buildbot
@ 2018-02-06 18:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-06 18:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2709>
Commit(s) tested:
422f3d3d6d5713bf9235b7b7696818a70b3b578d
Author(s) (in the same order as the commits):
Paul Carroll <pcarroll@codesourcery.com>
Subject:
Allow the find_abstract_instance_name() function in the BFD library to also return file and line number information.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/42/422f3d3d6d5713bf9235b7b7696818a70b3b578d/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-05 19:45 [binutils-gdb] ppc64: Fix stwux encoding sergiodj+buildbot
@ 2018-02-06 8:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-06 8:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2708>
Commit(s) tested:
72dd27306224497c8ba97f391d30b774d4d973fb
Author(s) (in the same order as the commits):
Jan Kratochvil <jan.kratochvil@redhat.com>
Subject:
ppc64: Fix stwux encoding
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/72/72dd27306224497c8ba97f391d30b774d4d973fb/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-05 18:56 [binutils-gdb] [PR22764][LD][AARCH64]Allow R_AARCH64_ABS16 and R_AARCH64_ABS32 against absolution symbol or undefine symbol in shared object sergiodj+buildbot
@ 2018-02-06 7:08 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-06 7:08 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2707>
Commit(s) tested:
279b2f94168ee91e02ccd070d27c983fc001fe12
Author(s) (in the same order as the commits):
Renlin Li <renlin.li@arm.com>
Subject:
[PR22764][LD][AARCH64]Allow R_AARCH64_ABS16 and R_AARCH64_ABS32 against absolution symbol or undefine symbol in shared object.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/27/279b2f94168ee91e02ccd070d27c983fc001fe12/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-05 18:11 [binutils-gdb] Remove myself as a write-after-approval GDB maintainer sergiodj+buildbot
@ 2018-02-06 5:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-06 5:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2706>
Commit(s) tested:
f3b91ed8f96a4d41eef1c64a7e77c406ec763612
Author(s) (in the same order as the commits):
Antoine Tremblay <antoine.tremblay@ericsson.com>
Subject:
Remove myself as a write-after-approval GDB maintainer.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f3/f3b91ed8f96a4d41eef1c64a7e77c406ec763612/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-05 17:05 [binutils-gdb] x86: Remove the unused _GLOBAL_OFFSET_TABLE_ sergiodj+buildbot
@ 2018-02-06 3:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-06 3:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2705>
Commit(s) tested:
cd04836359da82ae1dc67e5a05565536f4427b51
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Remove the unused _GLOBAL_OFFSET_TABLE_
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cd/cd04836359da82ae1dc67e5a05565536f4427b51/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-05 14:42 [binutils-gdb] RISC-V/BFD: Correct a missing initializer error with pre-4.7 GCC sergiodj+buildbot
@ 2018-02-05 23:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-05 23:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2703>
Commit(s) tested:
e65b1a78686f840ab46fe97355d674919185adc8
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
RISC-V/BFD: Correct a missing initializer error with pre-4.7 GCC
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e6/e65b1a78686f840ab46fe97355d674919185adc8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-05 14:29 [binutils-gdb] MIPS/BFD: Correctly report unsupported `.reginfo' section size sergiodj+buildbot
@ 2018-02-05 21:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-05 21:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2702>
Commit(s) tested:
2d6dda71611ba6cc16fe2bd21ac816d5f7d1e74d
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
MIPS/BFD: Correctly report unsupported `.reginfo' section size
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2d/2d6dda71611ba6cc16fe2bd21ac816d5f7d1e74d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-05 8:46 [binutils-gdb] Align natural-format register values to the same column sergiodj+buildbot
@ 2018-02-05 11:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-05 11:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2699>
Commit(s) tested:
e813d34aaabee0ca034fa5ddd50e76ade80318bc
Author(s) (in the same order as the commits):
Ruslan Kabatsayev <b7.10110111@gmail.com>
Subject:
Align natural-format register values to the same column
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e8/e813d34aaabee0ca034fa5ddd50e76ade80318bc/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-05 5:03 [binutils-gdb] Move comment in gdb/dwarf2read.c::dwarf2_physname sergiodj+buildbot
@ 2018-02-05 6:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-05 6:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2698>
Commit(s) tested:
0eb876f52f348ff08be24bca6cbca00e302839b2
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Move comment in gdb/dwarf2read.c::dwarf2_physname
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0e/0eb876f52f348ff08be24bca6cbca00e302839b2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-03 17:11 [binutils-gdb] gdb/testsuite: Remove use of dejagnu cleanup proc sergiodj+buildbot
@ 2018-02-03 19:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-03 19:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2696>
Commit(s) tested:
f721678315fc6bbec25341bd616a906976d72693
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb/testsuite: Remove use of dejagnu cleanup proc
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f7/f721678315fc6bbec25341bd616a906976d72693/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-02 20:58 [binutils-gdb] RISC-V: Fix --wrap and relaxation conflict sergiodj+buildbot
@ 2018-02-02 22:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-02 22:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2695>
Commit(s) tested:
7f02625eb48105e100d2da58091d56978ed041ef
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
RISC-V: Fix --wrap and relaxation conflict.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7f/7f02625eb48105e100d2da58091d56978ed041ef/>
*** Diff to previous build ***
============================
new FAIL: gdb.multi/multi-term-settings.exp: inf1_how=tty: inf2_how=attach: continue
new FAIL: gdb.multi/multi-term-settings.exp: inf1_how=tty: inf2_how=attach: stop with control-c
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-02 19:21 [binutils-gdb] MI: Allow non-raw varobj evaluation sergiodj+buildbot
@ 2018-02-02 20:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-02 20:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2694>
Commit(s) tested:
0625771b9e29116dc1fb0b597501f18e4bb0e18c
Author(s) (in the same order as the commits):
Leszek Swirski via gdb-patches <gdb-patches@sourceware.org>
Subject:
MI: Allow non-raw varobj evaluation
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/06/0625771b9e29116dc1fb0b597501f18e4bb0e18c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-02 3:50 [binutils-gdb] Do not classify C struct members as a filename sergiodj+buildbot
@ 2018-02-02 5:13 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-02 5:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2692>
Commit(s) tested:
59498c305e6f1db2a1ed8d44cb58f0d24ec092fe
Author(s) (in the same order as the commits):
Leszek Swirski <leszeks@google.com>
Subject:
Do not classify C struct members as a filename
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/59/59498c305e6f1db2a1ed8d44cb58f0d24ec092fe/>
*** Diff to previous build ***
============================
new FAIL: gdb.cp/filename.exp: print c.includefile[0]
new FAIL: gdb.cp/filename.exp: print pc->includefile[0]
new FAIL: gdb.cp/filename.exp: print d.includefile
new FAIL: gdb.cp/filename.exp: print pd->includefile
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-01 16:11 [binutils-gdb] Rewrite arm_record_coproc_data_proc and arm_record_data_proc_misc_ld_str sergiodj+buildbot
@ 2018-02-01 21:08 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-01 21:08 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2691>
Commit(s) tested:
2d9e6acbdbc528563a9df5445584a8a150a86527
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Rewrite arm_record_coproc_data_proc and arm_record_data_proc_misc_ld_str
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2d/2d9e6acbdbc528563a9df5445584a8a150a86527/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=tty: stop with control-c
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-01 15:47 [binutils-gdb] set ret signed in arm_record_extension_space sergiodj+buildbot
@ 2018-02-01 19:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-01 19:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2690>
Commit(s) tested:
df95a9cf09867c237ddf9b4eb65a990e86de1e17
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
set ret signed in arm_record_extension_space
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/df/df95a9cf09867c237ddf9b4eb65a990e86de1e17/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-02-01 15:05 [binutils-gdb] Fix gdb.base/attach.exp fails when gdb is configured --with-sysroot=/ sergiodj+buildbot
@ 2018-02-01 17:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-01 17:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2689>
Commit(s) tested:
d4d38844faaff1576b021558d0835dedbd415e8d
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Fix gdb.base/attach.exp fails when gdb is configured --with-sysroot=/
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d4/d4d38844faaff1576b021558d0835dedbd415e8d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-31 15:21 [binutils-gdb] gdb: Fix remote-sim/MinGW/Darwin builds sergiodj+buildbot
@ 2018-02-01 4:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-02-01 4:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2686>
Commit(s) tested:
f6cfb42730ed37bfb32cb27ef627df930f437f08
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
gdb: Fix remote-sim/MinGW/Darwin builds
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f6/f6cfb42730ed37bfb32cb27ef627df930f437f08/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-31 13:56 [binutils-gdb] Check if __start/__stop symbols are referenced by shared objects sergiodj+buildbot
@ 2018-01-31 23:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-31 23:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2684>
Commit(s) tested:
823143c6ca8ef4267e67ba03771991e08d09fabd
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
Check if __start/__stop symbols are referenced by shared objects
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/82/823143c6ca8ef4267e67ba03771991e08d09fabd/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-31 13:41 [binutils-gdb] (Ada) Add gdb-mi support for stopping at start of exception handler sergiodj+buildbot
@ 2018-01-31 21:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-31 21:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2683>
Commit(s) tested:
bea298f9547372e6cb7854fabc2c0646e1d3d9be
Author(s) (in the same order as the commits):
Xavier Roirand <roirand@adacore.com>
Subject:
(Ada) Add gdb-mi support for stopping at start of exception handler.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/be/bea298f9547372e6cb7854fabc2c0646e1d3d9be/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-thread_db.exp: continue to end
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-31 13:56 [binutils-gdb] (Ada) C++fy conditional string when catching exception sergiodj+buildbot
@ 2018-01-31 19:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-31 19:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2682>
Commit(s) tested:
56ecd069f031d6bcdaa46664c68a16cb27b379c3
Author(s) (in the same order as the commits):
Xavier Roirand <roirand@adacore.com>
Subject:
(Ada) C++fy conditional string when catching exception.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/56/56ecd069f031d6bcdaa46664c68a16cb27b379c3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-31 13:03 [binutils-gdb] (Ada) Add testcase for catch assert with condition sergiodj+buildbot
@ 2018-01-31 14:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-31 14:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2680>
Commit(s) tested:
395507f62b98a6a1f6778295a5667110b0fc4b57
Author(s) (in the same order as the commits):
Xavier Roirand <roirand@adacore.com>
Subject:
(Ada) Add testcase for catch assert with condition
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/39/395507f62b98a6a1f6778295a5667110b0fc4b57/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-31 7:35 [binutils-gdb] internal-error using '@' (repeat) operator on array of dynamic objects sergiodj+buildbot
@ 2018-01-31 9:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-31 9:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2679>
Commit(s) tested:
929b5ad40f70fbd5bdf37d30281a761d56c87b59
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
internal-error using '@' (repeat) operator on array of dynamic objects
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/92/929b5ad40f70fbd5bdf37d30281a761d56c87b59/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-30 18:05 [binutils-gdb] Improve junk file removal in source tarball creation script sergiodj+buildbot
@ 2018-01-30 23:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-30 23:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2675>
Commit(s) tested:
52b2f30022323367b2cd727f402c9876bdc53b0d
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Improve junk file removal in source tarball creation script.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/52/52b2f30022323367b2cd727f402c9876bdc53b0d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-30 16:06 [binutils-gdb] Per-inferior target_terminal state, fix PR gdb/13211, more sergiodj+buildbot
@ 2018-01-30 19:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-30 19:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2673>
Commit(s) tested:
e671cd59d74cec9f53e110ce887128d1eeadb7f2
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Per-inferior target_terminal state, fix PR gdb/13211, more
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e6/e671cd59d74cec9f53e110ce887128d1eeadb7f2/>
*** Diff to previous build ***
============================
new FAIL: gdb.multi/multi-term-settings.exp: inf1_how=run: inf2_how=attach: continue
new FAIL: gdb.multi/multi-term-settings.exp: inf1_how=run: inf2_how=attach: stop with control-c
new FAIL: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: stop with control-c
new FAIL: gdb.multi/multi-term-settings.exp: inf1_how=tty: inf2_how=attach: continue
new FAIL: gdb.multi/multi-term-settings.exp: inf1_how=tty: inf2_how=attach: stop with control-c
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-30 15:53 [binutils-gdb] linux-nat: Eliminate custom target_terminal_{inferior, ours}, stop using set_sigint_trap sergiodj+buildbot
@ 2018-01-30 17:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-30 17:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2672>
Commit(s) tested:
9c3a5d9319648db16b30a91253ad02d41d242cef
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
linux-nat: Eliminate custom target_terminal_{inferior,ours}, stop using set_sigint_trap
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9c/9c3a5d9319648db16b30a91253ad02d41d242cef/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-30 8:44 [binutils-gdb] PR22758, FAIL: Run pr22393-2 sergiodj+buildbot
@ 2018-01-30 11:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-30 11:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2671>
Commit(s) tested:
76cb3a89a6615cf3418fa1efe8268bf6673a5c8a
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22758, FAIL: Run pr22393-2
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/76/76cb3a89a6615cf3418fa1efe8268bf6673a5c8a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-29 18:21 [binutils-gdb] Don't call "detach_inferior" on "remote_follow_fork" sergiodj+buildbot
@ 2018-01-29 20:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-29 20:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2668>
Commit(s) tested:
69ab5edb4d601611ba7b4d05e56689d4b60ca3b1
Author(s) (in the same order as the commits):
Sergio Durigan Junior <sergiodj@redhat.com>
Subject:
Don't call "detach_inferior" on "remote_follow_fork"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/69/69ab5edb4d601611ba7b4d05e56689d4b60ca3b1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: next does not change thread
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-29 13:45 [binutils-gdb] Prevent patch remnants from being included in release tarballs sergiodj+buildbot
@ 2018-01-29 15:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-29 15:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2667>
Commit(s) tested:
b431b4ea88c8cc1b75edc4aeaa592942a905c18f
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Prevent patch remnants from being included in release tarballs.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b4/b431b4ea88c8cc1b75edc4aeaa592942a905c18f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-28 17:24 [binutils-gdb] Remove dwarf2_per_objfile_free and use after free of dwarf2_per_objfile sergiodj+buildbot
@ 2018-01-28 18:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-28 18:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2665>
Commit(s) tested:
fc8e7e75c2be02237a7961688b06869814f36a18
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove dwarf2_per_objfile_free and use after free of dwarf2_per_objfile
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fc/fc8e7e75c2be02237a7961688b06869814f36a18/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-27 17:07 [binutils-gdb] Avoid compilation errors in MinGW native builds of GDB sergiodj+buildbot
@ 2018-01-27 21:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-27 21:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2661>
Commit(s) tested:
b2a426e2c5632644b6b8bc0dde4cd32d42d548e2
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/Ubuntu-AArch32-m32/b2/b2a426e2c5632644b6b8bc0dde4cd32d42d548e2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-26 15:05 [binutils-gdb] Add myself as a write-after-approval GDB maintainer sergiodj+buildbot
@ 2018-01-26 16:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-26 16:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2656>
Commit(s) tested:
56ae9dc397bdf08c4e8f1ef0b64f4320bf88ba3e
Author(s) (in the same order as the commits):
Alan Hayward <alan.hayward@arm.com>
Subject:
Add myself as a write-after-approval GDB maintainer.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/56/56ae9dc397bdf08c4e8f1ef0b64f4320bf88ba3e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-26 6:02 [binutils-gdb] Define __start/__stop symbols when there is only a dynamic def sergiodj+buildbot
@ 2018-01-26 9:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-26 9:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2654>
Commit(s) tested:
32253bb7963ac7caa166ec41e336372f2ffc03d4
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Define __start/__stop symbols when there is only a dynamic def
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/32/32253bb7963ac7caa166ec41e336372f2ffc03d4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-26 5:34 [binutils-gdb] PowerPC64 .branch_lt size change leads to "stubs don't match calculated size" sergiodj+buildbot
@ 2018-01-26 6:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-26 6:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2653>
Commit(s) tested:
ba21f5646454c418e75eb06f6bf1a00a173641ca
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PowerPC64 .branch_lt size change leads to "stubs don't match calculated size"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ba/ba21f5646454c418e75eb06f6bf1a00a173641ca/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-25 11:50 [binutils-gdb] PR22746, crash when running 32-bit objdump on corrupted file sergiodj+buildbot
@ 2018-01-25 15:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-25 15:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2652>
Commit(s) tested:
38e64b0ecc7f4ee64a02514b8d532782ac057fa2
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22746, crash when running 32-bit objdump on corrupted file
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/38/38e64b0ecc7f4ee64a02514b8d532782ac057fa2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-25 11:35 [binutils-gdb] Fix PR ld/22727 (TLS breakage in PIC/PIE mode on SPARC) sergiodj+buildbot
@ 2018-01-25 13:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-25 13:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2651>
Commit(s) tested:
bb363086e7743506d78bc6b1e56face0fb1fc93f
Author(s) (in the same order as the commits):
Eric Botcazou <ebotcazou@gcc.gnu.org>
Subject:
Fix PR ld/22727 (TLS breakage in PIC/PIE mode on SPARC).
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bb/bb363086e7743506d78bc6b1e56face0fb1fc93f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-24 18:49 [binutils-gdb] Fix GCC PR83906 - [8 Regression] Random FAIL: libstdc++-prettyprinters/80276.cc whatis p4 sergiodj+buildbot
@ 2018-01-25 1:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-25 1:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2648>
Commit(s) tested:
0f59d5fc1ce646348dfae3ca90b32f9228d1d514
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/Ubuntu-AArch32-m32/0f/0f59d5fc1ce646348dfae3ca90b32f9228d1d514/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-24 16:51 [binutils-gdb] [LD][AARCH64]Add group relocations to create PC-relative offset sergiodj+buildbot
@ 2018-01-24 23:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-24 23:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2647>
Commit(s) tested:
1daf502a16e052b55a28bd52b4fde185ccc3b27b
Author(s) (in the same order as the commits):
Renlin Li <renlin.li@arm.com>
Subject:
[LD][AARCH64]Add group relocations to create PC-relative offset.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1d/1daf502a16e052b55a28bd52b4fde185ccc3b27b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-24 16:36 [binutils-gdb] [GAS][AARCH64]Add group relocations to create PC-relative offset sergiodj+buildbot
@ 2018-01-24 20:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-24 20:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2646>
Commit(s) tested:
322474019df79a1305e83ff7620a72f31a5c7b55
Author(s) (in the same order as the commits):
Renlin Li <renlin.li@arm.com>
Subject:
[GAS][AARCH64]Add group relocations to create PC-relative offset.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/32/322474019df79a1305e83ff7620a72f31a5c7b55/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-23 19:18 [binutils-gdb] MIPS/BFD: Update a stale `mips_elf32_section_processing' reference sergiodj+buildbot
@ 2018-01-24 17:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-24 17:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2644>
Commit(s) tested:
1c5e4ee9ab4c173aca017d488cc074ef66562a12
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@mips.com>
Subject:
MIPS/BFD: Update a stale `mips_elf32_section_processing' reference
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1c/1c5e4ee9ab4c173aca017d488cc074ef66562a12/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-23 17:39 [binutils-gdb] Enable Intel PCONFIG instruction sergiodj+buildbot
@ 2018-01-24 14:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-24 14:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2643>
Commit(s) tested:
be3a8dca2d7241878302ca55f45129d532b6f746
Author(s) (in the same order as the commits):
Igor Tsimbalist <igor.v.tsimbalist@intel.com>
Subject:
Enable Intel PCONFIG instruction.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/be/be3a8dca2d7241878302ca55f45129d532b6f746/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-23 17:26 [binutils-gdb] Enable Intel WBNOINVD instruction sergiodj+buildbot
@ 2018-01-24 12:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-24 12:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2642>
Commit(s) tested:
3233d7d074e59b83f68a22071cff597f00d5ae81
Author(s) (in the same order as the commits):
Igor Tsimbalist <igor.v.tsimbalist@intel.com>
Subject:
Enable Intel WBNOINVD instruction.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/32/3233d7d074e59b83f68a22071cff597f00d5ae81/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-23 15:13 [binutils-gdb] s390: Move record-replay to s390-tdep.c sergiodj+buildbot
@ 2018-01-24 7:13 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-24 7:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2640>
Commit(s) tested:
ef8914a4d7d231fe3590f3e004316613e25f3617
Author(s) (in the same order as the commits):
Philipp Rudo <prudo@linux.vnet.ibm.com>
Subject:
s390: Move record-replay to s390-tdep.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ef/ef8914a4d7d231fe3590f3e004316613e25f3617/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-23 14:44 [binutils-gdb] s390: gdbarch_tdep add hook for syscall record sergiodj+buildbot
@ 2018-01-24 3:48 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-24 3:48 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2638>
Commit(s) tested:
9c0b896ee1d4edfe30c783b027ed5c081845a63d
Author(s) (in the same order as the commits):
Philipp Rudo <prudo@linux.vnet.ibm.com>
Subject:
s390: gdbarch_tdep add hook for syscall record
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9c/9c0b896ee1d4edfe30c783b027ed5c081845a63d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-23 14:30 [binutils-gdb] s390: Hook s390 into OSABI mechanism sergiodj+buildbot
@ 2018-01-24 1:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-24 1:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2637>
Commit(s) tested:
7042632bf7976d29889ba89fe4867654c5f38e2d
Author(s) (in the same order as the commits):
Philipp Rudo <prudo@linux.vnet.ibm.com>
Subject:
s390: Hook s390 into OSABI mechanism
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/70/7042632bf7976d29889ba89fe4867654c5f38e2d/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=AIX: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=Cygwin: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=DJGPP: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=Darwin: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=FreeBSD: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=GNU/Hurd: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=LynxOS178: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=NetBSD: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=Newlib: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=Newlib: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=OpenBSD: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=OpenVMS: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=OpenVMS: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=QNX-Neutrino: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=SDE: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=SVR4: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=Solaris: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=Symbian: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-23 17:23 [binutils-gdb] s390: if -> gdb_assert for tdesc_has_registers check sergiodj+buildbot
@ 2018-01-23 23:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-23 23:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2636>
Commit(s) tested:
650f5e137006fb7aea98e33d2ca9c6ac6712334c
Author(s) (in the same order as the commits):
Philipp Rudo <prudo@linux.vnet.ibm.com>
Subject:
s390: if -> gdb_assert for tdesc_has_registers check
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/65/650f5e137006fb7aea98e33d2ca9c6ac6712334c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-23 16:25 [binutils-gdb] s390: Move tdesc validation to separate function sergiodj+buildbot
@ 2018-01-23 22:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-23 22:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2635>
Commit(s) tested:
47c9317e71768ba9788c6dc055fb6932d0f0923a
Author(s) (in the same order as the commits):
Philipp Rudo <prudo@linux.vnet.ibm.com>
Subject:
s390: Move tdesc validation to separate function
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/47/47c9317e71768ba9788c6dc055fb6932d0f0923a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-23 14:44 [binutils-gdb] s390: gdbarch_tdep.have_* int -> bool sergiodj+buildbot
@ 2018-01-23 18:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-23 18:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2633>
Commit(s) tested:
ab9bcc67975f2a04dfa0e670096fc8161d7840b9
Author(s) (in the same order as the commits):
Philipp Rudo <prudo@linux.vnet.ibm.com>
Subject:
s390: gdbarch_tdep.have_* int -> bool
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ab/ab9bcc67975f2a04dfa0e670096fc8161d7840b9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-23 13:15 [binutils-gdb] s390: Allocate gdbarch & tdep at start of gdbarch_init sergiodj+buildbot
@ 2018-01-23 16:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-23 16:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2632>
Commit(s) tested:
21f6f5ffc652e116e518fee29ebdc8fbfeeaa734
Author(s) (in the same order as the commits):
Philipp Rudo <prudo@linux.vnet.ibm.com>
Subject:
s390: Allocate gdbarch & tdep at start of gdbarch_init
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/21/21f6f5ffc652e116e518fee29ebdc8fbfeeaa734/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-22 15:56 [binutils-gdb] MAINTAINERS: Update my company e-mail address sergiodj+buildbot
@ 2018-01-23 2:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-23 2:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2627>
Commit(s) tested:
d65ce302abcb260e14ca5f201b78e8e6d4a2e720
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/Ubuntu-AArch32-m32/d6/d65ce302abcb260e14ca5f201b78e8e6d4a2e720/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-22 13:34 [binutils-gdb] regcache_cooked_read -> regcache->cooked_read sergiodj+buildbot
@ 2018-01-22 22:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-22 22:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2625>
Commit(s) tested:
11f57cb67ecf5c69911eff21b54e05e93bbf2734
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
regcache_cooked_read -> regcache->cooked_read
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/11/11f57cb67ecf5c69911eff21b54e05e93bbf2734/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-22 11:47 [binutils-gdb] Replace regcache_raw_read with regcache->raw_read sergiodj+buildbot
@ 2018-01-22 18:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-22 18:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2624>
Commit(s) tested:
03f50fc878f75fcdebf0e3273f201fb4b62b0bae
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Replace regcache_raw_read with regcache->raw_read
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/03/03f50fc878f75fcdebf0e3273f201fb4b62b0bae/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/non-stop-fair-events.exp: signal_thread=2: thread 11 broke out of loop
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-22 12:07 [binutils-gdb] Remove mt port sergiodj+buildbot
@ 2018-01-22 16:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-22 16:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2622>
Commit(s) tested:
dc71152484248c0d8075618ec2146db4ea173b12
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Remove mt port
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/dc/dc71152484248c0d8075618ec2146db4ea173b12/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-22 5:10 [binutils-gdb] Ada/DWARF: Assume the Ada compiler produces descriptive type attributes sergiodj+buildbot
@ 2018-01-22 8:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-22 8:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2620>
Commit(s) tested:
de4cb04a20782b817fc80b49bba83b43cf1cb85d
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Ada/DWARF: Assume the Ada compiler produces descriptive type attributes
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/de/de4cb04a20782b817fc80b49bba83b43cf1cb85d/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-thread_db.exp: continue to end
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-22 4:32 [binutils-gdb] wrong line number in breakpoint location sergiodj+buildbot
@ 2018-01-22 6:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-22 6:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2619>
Commit(s) tested:
a9e408182d2faaed5c2457b68ea3276c719a590f
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
wrong line number in breakpoint location
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a9/a9e408182d2faaed5c2457b68ea3276c719a590f/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/break.exp: verify that they were cleared
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-21 19:13 [binutils-gdb] gdb: Don't store a thread-id for floating varobj sergiodj+buildbot
@ 2018-01-22 3:30 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-22 3:30 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2618>
Commit(s) tested:
e707fc445e68ccfa136a52cd4989b0cb778d1ca7
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb: Don't store a thread-id for floating varobj
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e7/e707fc445e68ccfa136a52cd4989b0cb778d1ca7/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-21 16:42 [binutils-gdb] gdb: Remove out of date comment sergiodj+buildbot
@ 2018-01-22 0:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-22 0:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2617>
Commit(s) tested:
03d0bf7b78b142a5e03dfa1c80100893753d0022
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb: Remove out of date comment
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/03/03d0bf7b78b142a5e03dfa1c80100893753d0022/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-21 17:01 [binutils-gdb] gdb: PR mi/20395: Fix -var-update for registers in frames 1 and up sergiodj+buildbot
@ 2018-01-21 22:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-21 22:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2616>
Commit(s) tested:
ae45162705fb76ee534336474a67b11373209c62
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb: PR mi/20395: Fix -var-update for registers in frames 1 and up
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ae/ae45162705fb76ee534336474a67b11373209c62/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-21 16:50 [binutils-gdb] gdb: New API for tracking innermost block sergiodj+buildbot
@ 2018-01-21 20:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-21 20:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2615>
Commit(s) tested:
aee1fcdf979d65c7623533ddd6d871767be9de13
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb: New API for tracking innermost block
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ae/aee1fcdf979d65c7623533ddd6d871767be9de13/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-21 16:05 [binutils-gdb] gdb: Remove duplicate declaration of global innermost_block sergiodj+buildbot
@ 2018-01-21 18:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-21 18:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2614>
Commit(s) tested:
396af9a1527b396c251e70b5c79b5fc83fd1d7ff
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb: Remove duplicate declaration of global innermost_block
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/39/396af9a1527b396c251e70b5c79b5fc83fd1d7ff/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-20 22:46 [binutils-gdb] x86: Check the versioned __tls_get_addr symbol sergiodj+buildbot
@ 2018-01-21 1:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-21 1:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2611>
Commit(s) tested:
8a1b824af786989f879ab1421a4279f60bba141a
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Check the versioned __tls_get_addr symbol
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8a/8a1b824af786989f879ab1421a4279f60bba141a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-19 22:47 [binutils-gdb] Fix qualified name lookup for Rust sergiodj+buildbot
@ 2018-01-20 22:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-20 22:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2610>
Commit(s) tested:
fcfcc376969c4d7a6d20827c47b584db389a32b9
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Fix qualified name lookup for Rust
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fc/fcfcc376969c4d7a6d20827c47b584db389a32b9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-19 19:19 [binutils-gdb] S390: Fix infcalls in s390-vregs test case sergiodj+buildbot
@ 2018-01-20 20:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-20 20:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2609>
Commit(s) tested:
634c1c3109a2ffdf43ef9dab839c88108d9980f3
Author(s) (in the same order as the commits):
Andreas Arnez <arnez@linux.vnet.ibm.com>
Subject:
S390: Fix infcalls in s390-vregs test case
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/63/634c1c3109a2ffdf43ef9dab839c88108d9980f3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-19 19:04 [binutils-gdb] gdb: Fix ia64 defining TRAP_HWBKPT before including gdb_wait.h sergiodj+buildbot
@ 2018-01-20 15:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-20 15:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2607>
Commit(s) tested:
5a6c3296a7a90694ad4042f6256f3da6d4fa4ee8
Author(s) (in the same order as the commits):
James Clarke <jrtc27@jrtc27.com>
Subject:
gdb: Fix ia64 defining TRAP_HWBKPT before including gdb_wait.h
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5a/5a6c3296a7a90694ad4042f6256f3da6d4fa4ee8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-19 17:48 [binutils-gdb] Make linux_nat_detach/thread_db_detach use the inferior parameter sergiodj+buildbot
@ 2018-01-20 13:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-20 13:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2606>
Commit(s) tested:
bc09b0c14fb713a9aec25e09b78499f3bc2441b5
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Make linux_nat_detach/thread_db_detach use the inferior parameter
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bc/bc09b0c14fb713a9aec25e09b78499f3bc2441b5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-19 17:34 [binutils-gdb] Pass inferior down to target_detach and to_detach sergiodj+buildbot
@ 2018-01-20 11:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-20 11:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2605>
Commit(s) tested:
6e1e1966bac965c5a26b5e5cae69cb0ed21be4cc
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Pass inferior down to target_detach and to_detach
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6e/6e1e1966bac965c5a26b5e5cae69cb0ed21be4cc/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-19 13:35 [binutils-gdb] S390: Improve comments for s390-tdbregs test case sergiodj+buildbot
@ 2018-01-20 6:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-20 6:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2603>
Commit(s) tested:
d6ad07fdef94777bb512f072361706bcc743d51c
Author(s) (in the same order as the commits):
Andreas Arnez <arnez@linux.vnet.ibm.com>
Subject:
S390: Improve comments for s390-tdbregs test case
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d6/d6ad07fdef94777bb512f072361706bcc743d51c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-19 11:05 [binutils-gdb] Update French translation in bfd sub-directory sergiodj+buildbot
@ 2018-01-20 4:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-20 4:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2602>
Commit(s) tested:
ee3fbc1ebb0cdd0785f4c328c5daaa4a4cdf3f91
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Update French translation in bfd sub-directory
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ee/ee3fbc1ebb0cdd0785f4c328c5daaa4a4cdf3f91/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-19 10:00 [binutils-gdb] Don't pass -m32 to libcc1 on arm-linux sergiodj+buildbot
@ 2018-01-20 0:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-20 0:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2600>
Commit(s) tested:
88af8ea80b9732f951e61a4ed8868e722f337c8e
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Don't pass -m32 to libcc1 on arm-linux
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/88/88af8ea80b9732f951e61a4ed8868e722f337c8e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-19 9:33 [binutils-gdb] Find arm-linux-gnueabi(hf)?-gcc in compile sergiodj+buildbot
@ 2018-01-19 23:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-19 23:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2599>
Commit(s) tested:
dea445b940545f9564972c5410ac8792b72cc9c3
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Find arm-linux-gnueabi(hf)?-gcc in compile
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/de/dea445b940545f9564972c5410ac8792b72cc9c3/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-thread_db.exp: continue to end
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-18 19:09 [binutils-gdb] GDB testsuite: Re-enable -fdiagnostics-color=never sergiodj+buildbot
@ 2018-01-19 19:44 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-19 19:44 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2597>
Commit(s) tested:
dcc069254040954ee72b3ed65b772d48cdff93df
Author(s) (in the same order as the commits):
Andreas Arnez <arnez@linux.vnet.ibm.com>
Subject:
GDB testsuite: Re-enable -fdiagnostics-color=never
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/dc/dcc069254040954ee72b3ed65b772d48cdff93df/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-18 15:43 [binutils-gdb] Make abbrev_table::abbrevs private sergiodj+buildbot
@ 2018-01-19 15:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-19 15:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2595>
Commit(s) tested:
4a17f7688fbab8f170144fa13ffcd06bc749e6ec
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Make abbrev_table::abbrevs private
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4a/4a17f7688fbab8f170144fa13ffcd06bc749e6ec/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-18 12:35 [binutils-gdb] Call cooked_read in ppu2spu_prev_register sergiodj+buildbot
@ 2018-01-19 12:49 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-19 12:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2594>
Commit(s) tested:
d679c21a43852305c5eeae957854f6e13d6f884c
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Call cooked_read in ppu2spu_prev_register
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d6/d679c21a43852305c5eeae957854f6e13d6f884c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-18 12:14 [binutils-gdb] PowerPC PLT stub alignment fixes sergiodj+buildbot
@ 2018-01-19 10:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-19 10:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2593>
Commit(s) tested:
691d2e9af211ff8dd5fa8c96cb961b73a78394d7
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PowerPC PLT stub alignment fixes
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/69/691d2e9af211ff8dd5fa8c96cb961b73a78394d7/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-thread_db.exp: continue to end
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 23:20 [binutils-gdb] Fix warning on gdb/compile/compile.c (C++-ify "triplet_rx") sergiodj+buildbot
@ 2018-01-19 4:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-19 4:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2591>
Commit(s) tested:
7d937cad0acdccd0ff485435fbe16f005e994c66
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/Ubuntu-AArch32-m32/7d/7d937cad0acdccd0ff485435fbe16f005e994c66/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 22:21 [binutils-gdb] RISC-V: Fix bug in prior addi/c.nop patch sergiodj+buildbot
@ 2018-01-19 2:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-19 2:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2590>
Commit(s) tested:
e925c834ecdb4a0ce595ad8d3da9c7d4f499ede0
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
RISC-V: Fix bug in prior addi/c.nop patch.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e9/e925c834ecdb4a0ce595ad8d3da9c7d4f499ede0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 20:21 [binutils-gdb] Remove symbolp typedef sergiodj+buildbot
@ 2018-01-18 23:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-18 23:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2589>
Commit(s) tested:
9e14690d06ac55136b7f051a2d2b8e173fa3bbdf
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove symbolp typedef
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9e/9e14690d06ac55136b7f051a2d2b8e173fa3bbdf/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 19:57 [binutils-gdb] Change dwarf2_cu::method_info to be a std::vector sergiodj+buildbot
@ 2018-01-18 19:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-18 19:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2587>
Commit(s) tested:
c89b44cdc52b6a9c0848a795689895e292ad1f46
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change dwarf2_cu::method_info to be a std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c8/c89b44cdc52b6a9c0848a795689895e292ad1f46/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 19:45 [binutils-gdb] Allocate dwarf2_cu with new sergiodj+buildbot
@ 2018-01-18 17:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-18 17:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2586>
Commit(s) tested:
fcd3b13d80a2d0e5fc31ef6a245be62db6a11420
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Allocate dwarf2_cu with new
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fc/fcd3b13d80a2d0e5fc31ef6a245be62db6a11420/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: other threads didn't run - locked
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 20:16 [binutils-gdb] Allocate abbrev_table with new sergiodj+buildbot
@ 2018-01-18 15:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-18 15:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2585>
Commit(s) tested:
685af9cd2283b07a222157723e239f09d6ea2682
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Allocate abbrev_table with new
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/68/685af9cd2283b07a222157723e239f09d6ea2682/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 19:20 [binutils-gdb] Unify new_symbol and new_symbol_full sergiodj+buildbot
@ 2018-01-18 13:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-18 13:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2584>
Commit(s) tested:
5e2db402c8e665b0c6ac81047a10cbf4e26329f2
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Unify new_symbol and new_symbol_full
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5e/5e2db402c8e665b0c6ac81047a10cbf4e26329f2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 18:49 [binutils-gdb] Fix gdb segv when objfile can't be opened sergiodj+buildbot
@ 2018-01-18 11:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-18 11:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2583>
Commit(s) tested:
416675305692976aca45860e24b963982a2e682a
Author(s) (in the same order as the commits):
Mike Gulick <mike.gulick@mathworks.com>
Subject:
Fix gdb segv when objfile can't be opened
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/41/416675305692976aca45860e24b963982a2e682a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 17:59 [binutils-gdb] Make linux_ptrace_attach_fail_reason return an std::string sergiodj+buildbot
@ 2018-01-18 9:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-18 9:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2582>
Commit(s) tested:
4d9b86e17505063c96a01d40cdf5b4fc2080a798
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Make linux_ptrace_attach_fail_reason return an std::string
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4d/4d9b86e17505063c96a01d40cdf5b4fc2080a798/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/sigstep-threads.exp: step 10
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 17:04 [binutils-gdb] Replace CET bit with IBT and SHSTK bits sergiodj+buildbot
@ 2018-01-18 5:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-18 5:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2580>
Commit(s) tested:
d777820bf5abea433c36e956b53b299502e0f708
Author(s) (in the same order as the commits):
Igor Tsimbalist <igor.v.tsimbalist@intel.com>
Subject:
Replace CET bit with IBT and SHSTK bits.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d7/d777820bf5abea433c36e956b53b299502e0f708/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 13:48 [binutils-gdb] configure: Fix test for fs_base/gs_base in <sys/user.h> sergiodj+buildbot
@ 2018-01-17 23:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-17 23:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2577>
Commit(s) tested:
f517c1805ac50c64c2dbb086c16b3bcf33b15a89
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/Ubuntu-AArch32-m32/f5/f517c1805ac50c64c2dbb086c16b3bcf33b15a89/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 11:56 [binutils-gdb] Relax gdb.compile/compile.exp to match the address printed for frame sergiodj+buildbot
@ 2018-01-17 15:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-17 15:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2573>
Commit(s) tested:
d8447b6b9fd288ebd35620178ba720b1f0ce7ebf
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/Ubuntu-AArch32-m32/d8/d8447b6b9fd288ebd35620178ba720b1f0ce7ebf/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-17 11:10 [binutils-gdb] Warning fix sergiodj+buildbot
@ 2018-01-17 12:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-17 12:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2572>
Commit(s) tested:
c75bc4f76fe456c57ef1e446db5378182692c429
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Warning fix
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c7/c75bc4f76fe456c57ef1e446db5378182692c429/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: next does not change thread
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-16 13:03 [binutils-gdb] Update translations for various binutils components sergiodj+buildbot
@ 2018-01-16 14:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-16 14:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2569>
Commit(s) tested:
f6efed019b4e49a4c27b518afbdf2d9bf0652843
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Update translations for various binutils components.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f6/f6efed019b4e49a4c27b518afbdf2d9bf0652843/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-16 9:25 [binutils-gdb] Mark register unavailable when PTRACE_PEEKUSER fails sergiodj+buildbot
@ 2018-01-16 11:44 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-16 11:44 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2568>
Commit(s) tested:
9a70f35c8d872bb5542e98e34b8b044228dcb844
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Mark register unavailable when PTRACE_PEEKUSER fails
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9a/9a70f35c8d872bb5542e98e34b8b044228dcb844/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-15 23:14 [binutils-gdb] gdb/common/signals-state-save-restore.c: Fix typos sergiodj+buildbot
@ 2018-01-16 2:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-16 2:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2566>
Commit(s) tested:
db422fb2120e311318657d9c7dd0e7b0b5a5eac9
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
gdb/common/signals-state-save-restore.c: Fix typos
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/db/db422fb2120e311318657d9c7dd0e7b0b5a5eac9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-15 12:32 [binutils-gdb] Update Ukranian translations for bfd, binutils, gas, gold, ld and opcodes sergiodj+buildbot
@ 2018-01-15 13:53 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-15 13:53 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2562>
Commit(s) tested:
616dcb87abe148edf7278581e04cf23aff97411e
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Update Ukranian translations for bfd, binutils, gas, gold, ld and opcodes
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/61/616dcb87abe148edf7278581e04cf23aff97411e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-13 16:17 [binutils-gdb] Update notes on how to make a release sergiodj+buildbot
@ 2018-01-14 4:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-14 4:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2560>
Commit(s) tested:
19e2900bd399d1ba272afe8b5b50b1b29a948bbe
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Update notes on how to make a release
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/19/19e2900bd399d1ba272afe8b5b50b1b29a948bbe/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-13 15:45 [binutils-gdb] Update pot files sergiodj+buildbot
@ 2018-01-14 1:53 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-14 1:53 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2559>
Commit(s) tested:
3957a4963f38fb249eced6c880efacd22f10eb28
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Update pot files
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/39/3957a4963f38fb249eced6c880efacd22f10eb28/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-13 14:31 [binutils-gdb] Bump version number to 2.30.51 sergiodj+buildbot
@ 2018-01-13 23:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-13 23:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2558>
Commit(s) tested:
769c7ea507209948135facd04bf8defc3f21a8a4
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Bump version number to 2.30.51
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/76/769c7ea507209948135facd04bf8defc3f21a8a4/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-thread_db.exp: continue to end
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-13 13:46 [binutils-gdb] Add note about 2.30 branch creation to changelogs sergiodj+buildbot
@ 2018-01-13 21:24 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-13 21:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2557>
Commit(s) tested:
faf766e31794722b7e2c24e44e920d0476cede32
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Add note about 2.30 branch creation to changelogs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fa/faf766e31794722b7e2c24e44e920d0476cede32/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-13 0:00 [binutils-gdb] gdb/testsuite: Don't attempt tests if they fail to compile sergiodj+buildbot
@ 2018-01-13 18:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-13 18:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2556>
Commit(s) tested:
cbcdb1aaddb4dd1a388eadbea6b6ec342c7ab067
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb/testsuite: Don't attempt tests if they fail to compile
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cb/cbcdb1aaddb4dd1a388eadbea6b6ec342c7ab067/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-thread_db.exp: continue to end
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-12 23:43 [binutils-gdb] Install and generate docs for gdb-add-index sergiodj+buildbot
@ 2018-01-13 16:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-13 16:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2555>
Commit(s) tested:
ba643918cf869fa0d064d733f69b453b6fe642ea
Author(s) (in the same order as the commits):
Sergio Durigan Junior <sergiodj@redhat.com>
Subject:
Install and generate docs for gdb-add-index
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ba/ba643918cf869fa0d064d733f69b453b6fe642ea/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-12 22:32 [binutils-gdb] Use the correct value for the offset of 'kve_protection' sergiodj+buildbot
@ 2018-01-13 13:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-13 13:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2554>
Commit(s) tested:
906b4aac4c1d3cdb2b1ea7105133cfbe25e04e14
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Use the correct value for the offset of 'kve_protection'.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/90/906b4aac4c1d3cdb2b1ea7105133cfbe25e04e14/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-12 19:19 [binutils-gdb] Fix GDB hang with remote after error from resume sergiodj+buildbot
@ 2018-01-13 3:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-13 3:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2550>
Commit(s) tested:
bdf2a94aa535016a1640d56e9b2b539c4376bf31
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/Ubuntu-AArch32-m32/bd/bdf2a94aa535016a1640d56e9b2b539c4376bf31/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-12 11:55 [binutils-gdb] Fix override of common symbols for a.out sergiodj+buildbot
@ 2018-01-12 23:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-12 23:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2548>
Commit(s) tested:
a78eea1623aa6d05a395a73414bf01f6c8ae81c6
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Fix override of common symbols for a.out
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a7/a78eea1623aa6d05a395a73414bf01f6c8ae81c6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-12 4:24 [binutils-gdb] ld: Create a new LOAD segment for separate code segment sergiodj+buildbot
@ 2018-01-12 12:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-12 12:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2542>
Commit(s) tested:
2888249fc9eb38b6d6e4bd969ce63c26e3753d5e
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
ld: Create a new LOAD segment for separate code segment
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/28/2888249fc9eb38b6d6e4bd969ce63c26e3753d5e/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/non-stop-fair-events.exp: signal_thread=2: thread 11 broke out of loop
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-12 2:29 [binutils-gdb] gdb_compile_shlib: Only consider shlib= options when building executables sergiodj+buildbot
@ 2018-01-12 7:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-12 7:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2540>
Commit(s) tested:
6181e9c2c5ba252ac016f51903dc35d7bfbbca71
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
gdb_compile_shlib: Only consider shlib= options when building executables
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/61/6181e9c2c5ba252ac016f51903dc35d7bfbbca71/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-11 23:57 [binutils-gdb] Ignore dynamic references on forced local symbols sergiodj+buildbot
@ 2018-01-12 5:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-12 5:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2539>
Commit(s) tested:
d664fd41e15f058aab41b70c567ad09f2fab1115
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
Ignore dynamic references on forced local symbols
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d6/d664fd41e15f058aab41b70c567ad09f2fab1115/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-11 19:05 [binutils-gdb] gdb.base/breakpoint-in-ro-region.exp regression on sss targets (PR gdb/22583) sergiodj+buildbot
@ 2018-01-12 0:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-12 0:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2537>
Commit(s) tested:
71d378ae60a4f072ce392046878d471255f6c8a1
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/Ubuntu-AArch32-m32/71/71d378ae60a4f072ce392046878d471255f6c8a1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-11 18:02 [binutils-gdb] ld: Keep PREINIT_ARRAY/INIT_ARRAY/FINI_ARRAY sections for -r --gc-sections sergiodj+buildbot
@ 2018-01-11 22:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-11 22:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2536>
Commit(s) tested:
8b6f4cd34fdde524ea035c65f7d48aaa3fb449b5
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
ld: Keep PREINIT_ARRAY/INIT_ARRAY/FINI_ARRAY sections for -r --gc-sections
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8b/8b6f4cd34fdde524ea035c65f7d48aaa3fb449b5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-11 5:36 [binutils-gdb] Remove VL variants for 4FMAPS and 4VNNIW insns sergiodj+buildbot
@ 2018-01-11 15:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-11 15:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2533>
Commit(s) tested:
888a89da7fa5d219695234c3a8dc7b8a57dfe8ee
Author(s) (in the same order as the commits):
Igor Tsimbalist <igor.v.tsimbalist@intel.com>
Subject:
Remove VL variants for 4FMAPS and 4VNNIW insns.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/88/888a89da7fa5d219695234c3a8dc7b8a57dfe8ee/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-11 1:53 [binutils-gdb] language_get_symbol_name_matcher -> get_symbol_name_matcher sergiodj+buildbot
@ 2018-01-11 7:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-11 7: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/2528>
Commit(s) tested:
618daa933cdce21424d3759ea95a4e2f5c69a1c2
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/Ubuntu-AArch32-m32/61/618daa933cdce21424d3759ea95a4e2f5c69a1c2/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-11 1:05 [binutils-gdb] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
@ 2018-01-11 5:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-11 5:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2527>
Commit(s) tested:
c63d3e8d12f0b08cda95f89aa13274defed215f0
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/c6/c63d3e8d12f0b08cda95f89aa13274defed215f0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-11 0:21 [binutils-gdb] Fix gdb.ada/complete.exp's "complete break ada" test (PR gdb/22670) sergiodj+buildbot
@ 2018-01-11 3:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-11 3:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2526>
Commit(s) tested:
d4c2a405cb7535d25b88e9b8dad0e557242950ca
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/Ubuntu-AArch32-m32/d4/d4c2a405cb7535d25b88e9b8dad0e557242950ca/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-10 23:32 [binutils-gdb] Fix gdb.ada/bp_c_mixed_case.exp (PR gdb/22670) sergiodj+buildbot
@ 2018-01-11 0:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-11 0:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2525>
Commit(s) tested:
8825213e97f0476068dc3b52b1b61df96b40708a
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/Ubuntu-AArch32-m32/88/8825213e97f0476068dc3b52b1b61df96b40708a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-10 14:58 [binutils-gdb] x86: fix Disp8 handling for scalar AVX512_4FMAPS insns sergiodj+buildbot
@ 2018-01-10 19:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-10 19:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2522>
Commit(s) tested:
cbda583ada32e16bf8b6c6aff730cc9eab63b364
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: fix Disp8 handling for scalar AVX512_4FMAPS insns
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cb/cbda583ada32e16bf8b6c6aff730cc9eab63b364/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-10 14:11 [binutils-gdb] x86: fix Disp8 handling for AVX512VL VPCMP*{B, W} variants sergiodj+buildbot
@ 2018-01-10 16:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-10 16:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2521>
Commit(s) tested:
c9e9227878d172d93bcbef51dfc76d96f027751d
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: fix Disp8 handling for AVX512VL VPCMP*{B,W} variants
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c9/c9e9227878d172d93bcbef51dfc76d96f027751d/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-thread_db.exp: continue to end
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-10 0:28 [binutils-gdb] Support 'info proc' for native FreeBSD processes sergiodj+buildbot
@ 2018-01-10 7:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-10 7:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2518>
Commit(s) tested:
92fce24de299a8b9a9a1c0c6b98e0e9c1656f99c
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Support 'info proc' for native FreeBSD processes.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/92/92fce24de299a8b9a9a1c0c6b98e0e9c1656f99c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-09 22:14 [binutils-gdb] Support 'info proc' for FreeBSD process core dumps sergiodj+buildbot
@ 2018-01-09 23:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-09 23:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2515>
Commit(s) tested:
d2176225dc982c22640215a0e611e997e8eeb030
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Support 'info proc' for FreeBSD process core dumps.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d2/d2176225dc982c22640215a0e611e997e8eeb030/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-09 14:53 [binutils-gdb] [Arm] Add CSDB instruction sergiodj+buildbot
@ 2018-01-09 18:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-09 18:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2514>
Commit(s) tested:
91d8b670661883fc0472fd05cf0e54d0e357c187
Author(s) (in the same order as the commits):
James Greenhalgh <james.greenhalgh@arm.com>
Subject:
[Arm] Add CSDB instruction
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/91/91d8b670661883fc0472fd05cf0e54d0e357c187/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-09 10:03 [binutils-gdb] Fix breakpoint add on inlined function using function name sergiodj+buildbot
@ 2018-01-09 14:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-09 14:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2512>
Commit(s) tested:
b1dc1806fad00fc5b2589164e964646c02a700fa
Author(s) (in the same order as the commits):
Xavier Roirand <roirand@adacore.com>
Subject:
Fix breakpoint add on inlined function using function name.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b1/b1dc1806fad00fc5b2589164e964646c02a700fa/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-08 13:11 [binutils-gdb] x86: Properly encode vmovd with 64-bit memeory sergiodj+buildbot
@ 2018-01-08 21:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-08 21:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2508>
Commit(s) tested:
704a705d7aaab8041df76e2981e2a1efc014aad0
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Properly encode vmovd with 64-bit memeory
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/70/704a705d7aaab8041df76e2981e2a1efc014aad0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-08 11:41 [binutils-gdb] Fix GDBserver build failure when $development is false sergiodj+buildbot
@ 2018-01-08 15:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-08 15:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2505>
Commit(s) tested:
605fd3c6590fbed834107a2e1d1df0ba58834576
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/Ubuntu-AArch32-m32/60/605fd3c6590fbed834107a2e1d1df0ba58834576/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-08 10:42 [binutils-gdb] Fix GDB build failure when $development is false sergiodj+buildbot
@ 2018-01-08 14:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-08 14:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2504>
Commit(s) tested:
1e5ded6ce688ddee065fa852053dda07fcce959e
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Fix GDB build failure when $development is false
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1e/1e5ded6ce688ddee065fa852053dda07fcce959e/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-08 10:02 [binutils-gdb] Relax expected output in gdb.ada/access_tagged_param.exp test sergiodj+buildbot
@ 2018-01-08 12:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-08 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/2503>
Commit(s) tested:
30066b0b00a2c09baed08e49437c2ae3c44bc4e0
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Relax expected output in gdb.ada/access_tagged_param.exp test
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/30/30066b0b00a2c09baed08e49437c2ae3c44bc4e0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-08 5:16 [binutils-gdb] (Ada) Fix print of array using non-contiguous enumeration indexes sergiodj+buildbot
@ 2018-01-08 7:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-08 7:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2502>
Commit(s) tested:
04bafb1ed002df1f25ca5a5773d87723a4baf46b
Author(s) (in the same order as the commits):
Xavier Roirand <roirand@adacore.com>
Subject:
(Ada) Fix print of array using non-contiguous enumeration indexes
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/04/04bafb1ed002df1f25ca5a5773d87723a4baf46b/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-07 19:29 [binutils-gdb] Remove dwarf2_per_objfile global sergiodj+buildbot
@ 2018-01-08 4:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-08 4:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2500>
Commit(s) tested:
ed2dc618b3d2b0be01ffdf74c4c75504b707bcf1
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove dwarf2_per_objfile global
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ed/ed2dc618b3d2b0be01ffdf74c4c75504b707bcf1/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-thread_db.exp: continue to end
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-07 18:45 [binutils-gdb] Replace objfile field in dwarf2_cu and dwarf2_per_cu_data with dwarf2_per_objfile sergiodj+buildbot
@ 2018-01-08 2:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-08 2:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2499>
Commit(s) tested:
e3b94546125849c6c513114cf20f78d2a7aa9db2
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Replace objfile field in dwarf2_cu and dwarf2_per_cu_data with dwarf2_per_objfile
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e3/e3b94546125849c6c513114cf20f78d2a7aa9db2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-07 18:03 [binutils-gdb] Make parse_debug_format_options return an std::string sergiodj+buildbot
@ 2018-01-08 0:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-08 0:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2498>
Commit(s) tested:
2cc050302cd365fd28fac65d49b6c817eed74faf
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make parse_debug_format_options return an std::string
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2c/2cc050302cd365fd28fac65d49b6c817eed74faf/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-07 17:08 [binutils-gdb] Replace VEC(converted_character_d) with std::vector sergiodj+buildbot
@ 2018-01-07 22:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-07 22:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2497>
Commit(s) tested:
b01ba14d4d5391e59fd0e1a3608fd47287edc008
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Replace VEC(converted_character_d) with std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b0/b01ba14d4d5391e59fd0e1a3608fd47287edc008/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.threads/sigstep-threads.exp: continue
new FAIL: gdb.threads/sigstep-threads.exp: step 19
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-07 15:59 [binutils-gdb] Remove xmethod_worker::clone sergiodj+buildbot
@ 2018-01-07 18:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-07 18:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2495>
Commit(s) tested:
f979c73fd0be9a8a683f79af40c7b939c2a65d9f
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove xmethod_worker::clone
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f9/f979c73fd0be9a8a683f79af40c7b939c2a65d9f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-07 14:48 [binutils-gdb] C++ify xmethod_worker, get rid of VEC(xmethod_worker_ptr) sergiodj+buildbot
@ 2018-01-07 16:48 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-07 16:48 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2494>
Commit(s) tested:
ba18742c3a1b62ff218db99bee47bb932af6dab9
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
C++ify xmethod_worker, get rid of VEC(xmethod_worker_ptr)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ba/ba18742c3a1b62ff218db99bee47bb932af6dab9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-06 2:13 [binutils-gdb] RISC-V: Print symbol address for jalr w/ zero offset sergiodj+buildbot
@ 2018-01-06 9:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-06 9:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2492>
Commit(s) tested:
35eeb78fa9535df6a273c053d8f102e046261b89
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
RISC-V: Print symbol address for jalr w/ zero offset.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/35/35eeb78fa9535df6a273c053d8f102e046261b89/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-05 18:57 [binutils-gdb] Fix gdb/spu-tdep.c build breakage sergiodj+buildbot
@ 2018-01-06 2:24 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-06 2:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2488>
Commit(s) tested:
a655456c134e5e02bab33941e1c738ca33905d23
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix gdb/spu-tdep.c build breakage
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a6/a655456c134e5e02bab33941e1c738ca33905d23/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-05 17:13 [binutils-gdb] Fix gdb.ada/info_addr_mixed_case.exp (PR gdb/22670) sergiodj+buildbot
@ 2018-01-05 23:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-05 23:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2485>
Commit(s) tested:
f98fc17b3ac4750842ec0fe28a18b51691ddfbda
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix gdb.ada/info_addr_mixed_case.exp (PR gdb/22670)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f9/f98fc17b3ac4750842ec0fe28a18b51691ddfbda/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-05 13:34 [binutils-gdb] (Ada) problem printing renaming which references a subprogram parameter sergiodj+buildbot
@ 2018-01-05 21:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-05 21:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2483>
Commit(s) tested:
342f82403949c74517a6353baec73b94d18549ad
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
(Ada) problem printing renaming which references a subprogram parameter
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/34/342f82403949c74517a6353baec73b94d18549ad/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-05 11:59 [binutils-gdb] (Ada) Fix Length attribute on array access sergiodj+buildbot
@ 2018-01-05 18:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-05 18:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2482>
Commit(s) tested:
7150d33cda60fd543e9d9d68eb58d4e6155fb878
Author(s) (in the same order as the commits):
Jerome Guitton <guitton@adacore.com>
Subject:
(Ada) Fix Length attribute on array access
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/71/7150d33cda60fd543e9d9d68eb58d4e6155fb878/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-05 7:31 [binutils-gdb] (Ada) Remove printing of array's first index when unneeded sergiodj+buildbot
@ 2018-01-05 14:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-05 14:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2480>
Commit(s) tested:
e3861a03138e24e7f2f0e8c4982bdad2a6e1dbaf
Author(s) (in the same order as the commits):
Xavier Roirand <roirand@adacore.com>
Subject:
(Ada) Remove printing of array's first index when unneeded
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e3/e3861a03138e24e7f2f0e8c4982bdad2a6e1dbaf/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-05 5:59 [binutils-gdb] Bump version to 8.1.50.DATE-git sergiodj+buildbot
@ 2018-01-05 10:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-05 10:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2478>
Commit(s) tested:
09aca9495c4794e586680f359e612ece173148ec
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Bump version to 8.1.50.DATE-git.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/09/09aca9495c4794e586680f359e612ece173148ec/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-04 22:38 [binutils-gdb] RISC-V: Add 2 missing privileged registers sergiodj+buildbot
@ 2018-01-05 0:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-05 0:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2475>
Commit(s) tested:
645a2c5b46e18013ac9cb16b66ba7b6b97cd01c5
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
RISC-V: Add 2 missing privileged registers.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/64/645a2c5b46e18013ac9cb16b66ba7b6b97cd01c5/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-04 11:13 [binutils-gdb] gdb.ada/maint_with_ada.exp: New testcase sergiodj+buildbot
@ 2018-01-04 18:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-04 18:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2474>
Commit(s) tested:
7365ec2ff4a7028503f39655bd2628d54418106c
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
gdb.ada/maint_with_ada.exp: New testcase
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/73/7365ec2ff4a7028503f39655bd2628d54418106c/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-04 10:28 [binutils-gdb] Add new gdb.ada/bp_c_mixed_case testcase for PR gdb/22670 sergiodj+buildbot
@ 2018-01-04 16:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-04 16:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2473>
Commit(s) tested:
289483b6a06c7a24ee9ae9021d2728ca4700b7a6
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Add new gdb.ada/bp_c_mixed_case testcase for PR gdb/22670
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/28/289483b6a06c7a24ee9ae9021d2728ca4700b7a6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-03 20:29 [binutils-gdb] Create pseudo sections for FreeBSD NT_PROCSTAT_(PROC|FILES|VMMAP) notes sergiodj+buildbot
@ 2018-01-03 21:53 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-03 21:53 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2470>
Commit(s) tested:
ddb2bbcf0624ef5f75c0a007c6b192c09b6fa70b
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Create pseudo sections for FreeBSD NT_PROCSTAT_(PROC|FILES|VMMAP) notes.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/dd/ddb2bbcf0624ef5f75c0a007c6b192c09b6fa70b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-03 7:50 [binutils-gdb] Update year range in copyright notice of binutils files sergiodj+buildbot
@ 2018-01-03 9:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-03 9:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2467>
Commit(s) tested:
219d1afa89d0d53ca93a684cac341f16470f3ca0
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Update year range in copyright notice of binutils files
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/21/219d1afa89d0d53ca93a684cac341f16470f3ca0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-03 4:17 [binutils-gdb] Unbreak spurious fails in gdb.base/step-line.exp sergiodj+buildbot
@ 2018-01-03 6:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-03 6:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2466>
Commit(s) tested:
bd570f80f6e47c93f4b1cc1e94688cdde33ca931
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Unbreak spurious fails in gdb.base/step-line.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bd/bd570f80f6e47c93f4b1cc1e94688cdde33ca931/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-02 17:37 [binutils-gdb] Fix compile time warning (in the ARM simulator) about a print statement with insufficient arguments sergiodj+buildbot
@ 2018-01-03 0:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-03 0:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2465>
Commit(s) tested:
43724d16bebb38fe6794f6a3741352a7698038de
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Fix compile time warning (in the ARM simulator) about a print statement with insufficient arguments.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/43/43724d16bebb38fe6794f6a3741352a7698038de/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-02 9:37 [binutils-gdb] [gdb/Ada] slices of arrays with dynamic strides sergiodj+buildbot
@ 2018-01-02 20:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-02 20:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2463>
Commit(s) tested:
9fe561ab7fc5ee3a06061dae6909cd61b49435df
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
[gdb/Ada] slices of arrays with dynamic strides
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9f/9fe561ab7fc5ee3a06061dae6909cd61b49435df/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-02 8:44 [binutils-gdb] Add support for dynamic DW_AT_byte_stride sergiodj+buildbot
@ 2018-01-02 17:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-02 17:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2462>
Commit(s) tested:
a405673cc5b56c260de4e1202cead709d1a4f24c
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Add support for dynamic DW_AT_byte_stride.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a4/a405673cc5b56c260de4e1202cead709d1a4f24c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-02 7:54 [binutils-gdb] treat Ada DW_TAG_unspecified_type DIEs as stub types sergiodj+buildbot
@ 2018-01-02 15:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-02 15:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2461>
Commit(s) tested:
74a2f8ffb83172de1af0da6751a65c08a722986f
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
treat Ada DW_TAG_unspecified_type DIEs as stub types
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/74/74a2f8ffb83172de1af0da6751a65c08a722986f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-02 6:58 [binutils-gdb] Update copyright year range in all GDB files sergiodj+buildbot
@ 2018-01-02 13:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-02 13:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2460>
Commit(s) tested:
e2882c85786571175a0b0bfc3bcd2f14620b1ea3
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Update copyright year range in all GDB files
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e2/e2882c85786571175a0b0bfc3bcd2f14620b1ea3/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/step-line.exp: continue to f1
PASS -> FAIL: gdb.base/step-line.exp: next to dummy 2
PASS -> FAIL: gdb.base/step-line.exp: next over dummy 2
PASS -> FAIL: gdb.base/step-line.exp: step into f2
PASS -> FAIL: gdb.base/step-line.exp: next over dummy 4
PASS -> FAIL: gdb.base/step-line.exp: next to dummy 5
PASS -> FAIL: gdb.base/step-line.exp: next to dummy 6
PASS -> FAIL: gdb.base/step-line.exp: next over dummy 6
PASS -> FAIL: gdb.base/step-line.exp: next to dummy 7
PASS -> FAIL: gdb.base/step-line.exp: next to dummy 8
PASS -> FAIL: gdb.base/step-line.exp: next over dummy 8
PASS -> FAIL: gdb.base/step-line.exp: next to dummy 9
PASS -> FAIL: gdb.base/step-line.exp: next to dummy 10
PASS -> FAIL: gdb.base/step-line.exp: next over dummy 10
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-02 4:44 [binutils-gdb] Update copyright year in version message of GDB, GDBserver and GDBreplay sergiodj+buildbot
@ 2018-01-02 7:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-02 7:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2457>
Commit(s) tested:
82e1e79a420734bcb1fa255a1e7b3250e6acee65
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Update copyright year in version message of GDB, GDBserver and GDBreplay
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/82/82e1e79a420734bcb1fa255a1e7b3250e6acee65/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2018-01-02 3:57 [binutils-gdb] Yearly rotation of the gdb/ChangeLog file sergiodj+buildbot
@ 2018-01-02 5:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2018-01-02 5:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2456>
Commit(s) tested:
053f54e57f64ca88596999f37bf3bd329b497d20
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Yearly rotation of the gdb/ChangeLog file
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/05/053f54e57f64ca88596999f37bf3bd329b497d20/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-31 11:04 [binutils-gdb] Avoid indexing std::vector past the end sergiodj+buildbot
@ 2017-12-31 16:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-31 16:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2455>
Commit(s) tested:
47fea877452b84b94ac6ffb26f194f12845526fa
Author(s) (in the same order as the commits):
Ruslan Kabatsayev <b7.10110111@gmail.com>
Subject:
Avoid indexing std::vector past the end
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/47/47fea877452b84b94ac6ffb26f194f12845526fa/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-31 4:57 [binutils-gdb] Only ignore -Wenum-compare-switch if it exists sergiodj+buildbot
@ 2017-12-31 6:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-31 6:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2453>
Commit(s) tested:
cfa27c399ec9236a100ef794505d35f60da41a6d
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Only ignore -Wenum-compare-switch if it exists
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cf/cfa27c399ec9236a100ef794505d35f60da41a6d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-30 7:02 [binutils-gdb] Make mapped_debug_names and mapped_index final sergiodj+buildbot
@ 2017-12-30 8:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-30 8:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2450>
Commit(s) tested:
fc898b42e355fef58e6a029799fdd71b9dda5dc6
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Make mapped_debug_names and mapped_index final
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fc/fc898b42e355fef58e6a029799fdd71b9dda5dc6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-30 3:17 [binutils-gdb] Remove unnecessary call to get_thread_db_info sergiodj+buildbot
@ 2017-12-30 5:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-30 5:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2448>
Commit(s) tested:
502a625ab01da27e851333b598c893d6f2c20bd0
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove unnecessary call to get_thread_db_info
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/50/502a625ab01da27e851333b598c893d6f2c20bd0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-28 21:41 [binutils-gdb] RISC-V: Add missing privileged spec registers sergiodj+buildbot
@ 2017-12-28 23:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-28 23:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2447>
Commit(s) tested:
d9be0c189a9a9b77a6bf4501f8891544b8ce9593
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
RISC-V: Add missing privileged spec registers.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d9/d9be0c189a9a9b77a6bf4501f8891544b8ce9593/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-27 17:51 [binutils-gdb] tdesc: handle arbitrary strings in tdesc_register_in_reggroup_p sergiodj+buildbot
@ 2017-12-28 0:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-28 0:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2445>
Commit(s) tested:
cef0f8684e818f8b6c71c44dc9cc28a6d0ac3754
Author(s) (in the same order as the commits):
Stafford Horne <shorne@gmail.com>
Subject:
tdesc: handle arbitrary strings in tdesc_register_in_reggroup_p
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ce/cef0f8684e818f8b6c71c44dc9cc28a6d0ac3754/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-27 15:46 [binutils-gdb] reggroups: Convert reggroups from post_init to pre_init sergiodj+buildbot
@ 2017-12-27 19:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-27 19:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2443>
Commit(s) tested:
c1166ca9f3543b28e8b0057ecaf2cd3251cd51c5
Author(s) (in the same order as the commits):
Stafford Horne <shorne@gmail.com>
Subject:
reggroups: Convert reggroups from post_init to pre_init
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c1/c1166ca9f3543b28e8b0057ecaf2cd3251cd51c5/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-27 15:03 [binutils-gdb] reggroups: Add test and docs for `info reg $reggroup` feature sergiodj+buildbot
@ 2017-12-27 16:24 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-27 16:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2442>
Commit(s) tested:
b67d92b06e6155a392a0c2d413f87d050880dbf4
Author(s) (in the same order as the commits):
Stafford Horne <shorne@gmail.com>
Subject:
reggroups: Add test and docs for `info reg $reggroup` feature
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b6/b67d92b06e6155a392a0c2d413f87d050880dbf4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-23 21:51 [binutils-gdb] Add ATTRIBUTE_PRINTF to printf_field_type_assignment sergiodj+buildbot
@ 2017-12-23 23:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-23 23:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2440>
Commit(s) tested:
6e8c24fe27098f407000812e61fa8210095a7970
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Add ATTRIBUTE_PRINTF to printf_field_type_assignment
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6e/6e8c24fe27098f407000812e61fa8210095a7970/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-21 23:57 [binutils-gdb] Do not emit "field_type" var if not needed on "maint print c-tdesc" sergiodj+buildbot
@ 2017-12-22 1:44 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-22 1:44 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2439>
Commit(s) tested:
a8d2e5856f87a658d69018fe1ccd56482eebdd59
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Do not emit "field_type" var if not needed on "maint print c-tdesc"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a8/a8d2e5856f87a658d69018fe1ccd56482eebdd59/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.gdb/unittest.exp: maintenance selftest
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-20 21:59 [binutils-gdb] RISC-V: Add compressed instruction hints, and a few misc cleanups sergiodj+buildbot
@ 2017-12-21 0:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-21 0:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2437>
Commit(s) tested:
21a186f28061ea51e422ae47d062793ceac2180f
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
RISC-V: Add compressed instruction hints, and a few misc cleanups.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/21/21a186f28061ea51e422ae47d062793ceac2180f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-20 13:37 [binutils-gdb] [Cell/B.E.] Fix regression due to gdbarch_significant_addr_bit sergiodj+buildbot
@ 2017-12-20 16:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-20 16:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2436>
Commit(s) tested:
396d3980f518cfc9a936e3fb8138b0492399525a
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
[Cell/B.E.] Fix regression due to gdbarch_significant_addr_bit
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/39/396d3980f518cfc9a936e3fb8138b0492399525a/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.gdb/unittest.exp: maintenance selftest
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-18 22:34 [binutils-gdb] PR22626, invalid dynindx used for dynamic relocs against section syms sergiodj+buildbot
@ 2017-12-18 23:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-18 23:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2433>
Commit(s) tested:
63f452a8bfd9c89b56dcc087cea84151e7a9ec24
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22626, invalid dynindx used for dynamic relocs against section syms
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/63/63f452a8bfd9c89b56dcc087cea84151e7a9ec24/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-18 11:26 [binutils-gdb] x86: fold certain AVX and AVX2 templates sergiodj+buildbot
@ 2017-12-18 14:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-18 14:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2432>
Commit(s) tested:
10c17abdd052c5f8f9c2bcdf8b01dffe5d06baf0
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: fold certain AVX and AVX2 templates
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/10/10c17abdd052c5f8f9c2bcdf8b01dffe5d06baf0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-18 10:42 [binutils-gdb] x86: fold RegXMM/RegYMM/RegZMM into RegSIMD sergiodj+buildbot
@ 2017-12-18 13:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-18 13:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2431>
Commit(s) tested:
1b54b8d7e4fc8055f9220a5287e8a94d8a65a88d
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: fold RegXMM/RegYMM/RegZMM into RegSIMD
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1b/1b54b8d7e4fc8055f9220a5287e8a94d8a65a88d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-18 9:35 [binutils-gdb] x86: drop FloatReg and FloatAcc sergiodj+buildbot
@ 2017-12-18 12:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-18 12:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2430>
Commit(s) tested:
ca0d63fe0703ed36af1a7bda6097958805895b3a
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: drop FloatReg and FloatAcc
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ca/ca0d63fe0703ed36af1a7bda6097958805895b3a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-18 8:56 [binutils-gdb] x86: replace Reg8, Reg16, Reg32, and Reg64 sergiodj+buildbot
@ 2017-12-18 10:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-18 10:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2429>
Commit(s) tested:
dc821c5f9ae5208ad1ec438718f75e224f856deb
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: replace Reg8, Reg16, Reg32, and Reg64
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/dc/dc821c5f9ae5208ad1ec438718f75e224f856deb/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-18 4:51 [binutils-gdb] improved error message when getting an exception printing a variable sergiodj+buildbot
@ 2017-12-18 8:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-18 8:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2428>
Commit(s) tested:
eccab96d54a9455557d3c4d5bff431f6e526d0b7
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
improved error message when getting an exception printing a variable
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ec/eccab96d54a9455557d3c4d5bff431f6e526d0b7/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-18 4:13 [binutils-gdb] (Ada) crash assigning to record component which is an array sergiodj+buildbot
@ 2017-12-18 6:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-18 6:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2427>
Commit(s) tested:
0e2da9f01334a01d1a6e224ecd592d6fbbb22515
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
(Ada) crash assigning to record component which is an array
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0e/0e2da9f01334a01d1a6e224ecd592d6fbbb22515/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.gdb/unittest.exp: maintenance selftest
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-18 3:22 [binutils-gdb] Ada: fix bad handling in ada_convert_actual sergiodj+buildbot
@ 2017-12-18 4:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-18 4:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2426>
Commit(s) tested:
cb923fcc23e07fe3dfb3837f47249aba79cdee6f
Author(s) (in the same order as the commits):
Xavier Roirand <roirand@adacore.com>
Subject:
Ada: fix bad handling in ada_convert_actual
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cb/cb923fcc23e07fe3dfb3837f47249aba79cdee6f/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-16 23:29 [binutils-gdb] gdb: Fix function parameter alignments in or1k-tdep.c sergiodj+buildbot
@ 2017-12-17 1:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-17 1:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2424>
Commit(s) tested:
38af1824019684e819ffb880bdf7fb03a2c2000a
Author(s) (in the same order as the commits):
Stafford Horne <shorne@gmail.com>
Subject:
gdb: Fix function parameter alignments in or1k-tdep.c.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/38/38af1824019684e819ffb880bdf7fb03a2c2000a/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.gdb/unittest.exp: maintenance selftest
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-16 3:54 [binutils-gdb] Fix ARI warning on gdb/typeprint.c:whatis_exp sergiodj+buildbot
@ 2017-12-16 6:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-16 6:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2422>
Commit(s) tested:
46afe196ec282505dcd2727725bfb5ef87ea4b21
Author(s) (in the same order as the commits):
Sergio Durigan Junior <sergiodj@redhat.com>
Subject:
Fix ARI warning on gdb/typeprint.c:whatis_exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/46/46afe196ec282505dcd2727725bfb5ef87ea4b21/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.gdb/unittest.exp: maintenance selftest
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-15 19:31 [binutils-gdb] Update documentation regarding the bfd returned by bfd_openr_next_archived_file sergiodj+buildbot
@ 2017-12-15 21:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-15 21:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2419>
Commit(s) tested:
fc076a47fd716ca75447d432251abc67a19ef908
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Update documentation regarding the bfd returned by bfd_openr_next_archived_file
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fc/fc076a47fd716ca75447d432251abc67a19ef908/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-15 18:35 [binutils-gdb] Fix PR19061, gdb hangs/spins-on-cpu when debugging any program on Alpha sergiodj+buildbot
@ 2017-12-15 19:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-15 19:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2418>
Commit(s) tested:
68f81d60196eb201b209873cf53258f13b0046b9
Author(s) (in the same order as the commits):
Richard Henderson <rth@redhat.com>
Subject:
Fix PR19061, gdb hangs/spins-on-cpu when debugging any program on Alpha
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/68/68f81d60196eb201b209873cf53258f13b0046b9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-15 11:47 [binutils-gdb] Skip 'maintenance check xml-descriptions' if XML is disabled sergiodj+buildbot
@ 2017-12-15 15:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-15 15:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2417>
Commit(s) tested:
1af17fd9cc3a453e55ce5b8f556c51859bf40363
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Skip 'maintenance check xml-descriptions' if XML is disabled
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1a/1af17fd9cc3a453e55ce5b8f556c51859bf40363/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-15 11:06 [binutils-gdb] Skip parse_memory_map_tests if XML is disabled sergiodj+buildbot
@ 2017-12-15 12:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-15 12:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2416>
Commit(s) tested:
97d4fac10fb9dac465d1d7e7a26c6b9cfb0b1326
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Skip parse_memory_map_tests if XML is disabled
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/97/97d4fac10fb9dac465d1d7e7a26c6b9cfb0b1326/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-15 9:44 [binutils-gdb] Fix disassembly for PowerPC sergiodj+buildbot
@ 2017-12-15 11:10 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-15 11:10 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2415>
Commit(s) tested:
fbc2255575afc0d332b28fd4991235e020cda667
Author(s) (in the same order as the commits):
Dimitar Dimitrov <dimitar@dinux.eu>
Subject:
Fix disassembly for PowerPC
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fb/fbc2255575afc0d332b28fd4991235e020cda667/>
*** Diff to previous build ***
============================
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new FAIL: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-15 8:34 [binutils-gdb] x86: drop stray CheckRegSize uses sergiodj+buildbot
@ 2017-12-15 9:47 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-15 9:47 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2414>
Commit(s) tested:
93b71a266695669cb9aa8ddf2717a1ccd53c925d
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: drop stray CheckRegSize uses
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/93/93b71a266695669cb9aa8ddf2717a1ccd53c925d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-14 21:04 [binutils-gdb] py-breakpoint: Don't use the 'p' PyArg_ParseTupleAndKeywords format specifier sergiodj+buildbot
@ 2017-12-14 22:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-14 22:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2412>
Commit(s) tested:
8e557e52b3fd45a56fb42dbbaad3d6ece3694eb4
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
py-breakpoint: Don't use the 'p' PyArg_ParseTupleAndKeywords format specifier
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8e/8e557e52b3fd45a56fb42dbbaad3d6ece3694eb4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-14 13:12 [binutils-gdb] Update the address of the FSF in the copyright notice of files which were using the old address sergiodj+buildbot
@ 2017-12-14 14:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-14 14:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2411>
Commit(s) tested:
863f7a5f4811c24d9a5863ffb541ff3da1511450
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Update the address of the FSF in the copyright notice of files which were using the old address.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/86/863f7a5f4811c24d9a5863ffb541ff3da1511450/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-14 5:57 [binutils-gdb] Ada: unable to compare strings (Attempt to compare array with non-array) sergiodj+buildbot
@ 2017-12-14 7:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-14 7:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2409>
Commit(s) tested:
79e8fcaafa92e7b4a74e510c5487e87c60ff1945
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Ada: unable to compare strings (Attempt to compare array with non-array)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/79/79e8fcaafa92e7b4a74e510c5487e87c60ff1945/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-14 4:30 [binutils-gdb] (Ada) Add support for task switching when debugging core files sergiodj+buildbot
@ 2017-12-14 6:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-14 6:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2408>
Commit(s) tested:
e05fa6f9df82886043e1f1df30e0b9be3fee2d55
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
(Ada) Add support for task switching when debugging core files
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e0/e05fa6f9df82886043e1f1df30e0b9be3fee2d55/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-13 23:20 [binutils-gdb] Add missing RISC-V fsrmi and fsflagsi instructions sergiodj+buildbot
@ 2017-12-14 3:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-14 3:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2407>
Commit(s) tested:
25982ee0222196381863a17dc135fc1d2763b385
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
Add missing RISC-V fsrmi and fsflagsi instructions.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/25/25982ee0222196381863a17dc135fc1d2763b385/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-13 17:54 [binutils-gdb] Fix regression: expression completer and scope operator (PR gdb/22584) sergiodj+buildbot
@ 2017-12-13 22:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-13 22:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2404>
Commit(s) tested:
a22ecf70263eff75ca2c5878fe7e8d0311d6737f
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix regression: expression completer and scope operator (PR gdb/22584)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a2/a22ecf70263eff75ca2c5878fe7e8d0311d6737f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-13 16:11 [binutils-gdb] [BFD][AARCH64]Disallow R_AARCH64_ABS32(LP64) & R_AARCH64_ABS16 in const section of shared object sergiodj+buildbot
@ 2017-12-13 19:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-13 19:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2402>
Commit(s) tested:
79e741920446582bd0e09f3e2b9f899c258efa56
Author(s) (in the same order as the commits):
Renlin Li <renlin.li@arm.com>
Subject:
[BFD][AARCH64]Disallow R_AARCH64_ABS32(LP64) & R_AARCH64_ABS16 in const section of shared object.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/79/79e741920446582bd0e09f3e2b9f899c258efa56/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-13 15:34 [binutils-gdb] gdb: Fix ARI warnings in or1k-tdep.c sergiodj+buildbot
@ 2017-12-13 18:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-13 18:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2401>
Commit(s) tested:
9664701462aec634d304923df8dc9c52c5a92caf
Author(s) (in the same order as the commits):
Stafford Horne <shorne@gmail.com>
Subject:
gdb: Fix ARI warnings in or1k-tdep.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/96/9664701462aec634d304923df8dc9c52c5a92caf/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-13 14:53 [binutils-gdb] Fix typo in gdb_ari.sh sergiodj+buildbot
@ 2017-12-13 17:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-13 17:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2400>
Commit(s) tested:
3bbd9f1877bfc5f37ebff1fef2af9eb783f49ace
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Fix typo in gdb_ari.sh
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3b/3bbd9f1877bfc5f37ebff1fef2af9eb783f49ace/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-13 13:44 [binutils-gdb] This patch enables disassembler_needs_relocs for PRU. It is needed to print correct symbols when disassembling arguments of "call" instructions with a relocation sergiodj+buildbot
@ 2017-12-13 15:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-13 15:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2399>
Commit(s) tested:
024d185c10a48339ae06634d0738dd796a159cd8
Author(s) (in the same order as the commits):
Dimitar Dimitrov <dimitar@dinux.eu>
Subject:
This patch enables disassembler_needs_relocs for PRU. It is needed to print correct symbols when disassembling arguments of "call" instructions with a relocation.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/02/024d185c10a48339ae06634d0738dd796a159cd8/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/all-architectures-5.exp: all passed
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-13 12:54 [binutils-gdb] S/390: Fix (some) PIE+undef weak failures sergiodj+buildbot
@ 2017-12-13 13:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-13 13:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2398>
Commit(s) tested:
10e7c0457cb7531f8b205e29e88b3e191cfa6037
Author(s) (in the same order as the commits):
Andreas Krebbel <krebbel@linux.vnet.ibm.com>
Subject:
S/390: Fix (some) PIE+undef weak failures
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/10/10e7c0457cb7531f8b205e29e88b3e191cfa6037/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-12 20:43 [binutils-gdb] sim: or1k: add cgen generated files sergiodj+buildbot
@ 2017-12-13 3:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-13 3:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2394>
Commit(s) tested:
6e51bfa75535439cc66039bcf4e8ebf16e8fe124
Author(s) (in the same order as the commits):
Stafford Horne <shorne@gmail.com>
Subject:
sim: or1k: add cgen generated files
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6e/6e51bfa75535439cc66039bcf4e8ebf16e8fe124/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-12 19:10 [binutils-gdb] sim: cgen: add MUL2OFSI and MUL1OFSI functions (needed for OR1K l.mul[u]) sergiodj+buildbot
@ 2017-12-13 0:53 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-13 0:53 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2392>
Commit(s) tested:
58884b0e451043ed2fb4d2fba18134f0fb451ce5
Author(s) (in the same order as the commits):
Peter Gavin <pgavin@gmail.com>
Subject:
sim: cgen: add MUL2OFSI and MUL1OFSI functions (needed for OR1K l.mul[u])
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/58/58884b0e451043ed2fb4d2fba18134f0fb451ce5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-12 17:32 [binutils-gdb] Add gdb for or1k build sergiodj+buildbot
@ 2017-12-12 21:30 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-12 21:30 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2390>
Commit(s) tested:
638d913757609367eea219d00296a0a3d45010c2
Author(s) (in the same order as the commits):
Stafford Horne <shorne@gmail.com>
Subject:
Add gdb for or1k build
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/63/638d913757609367eea219d00296a0a3d45010c2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-12 15:17 [binutils-gdb] gdb: Add OpenRISC or1k and or1knd target support sergiodj+buildbot
@ 2017-12-12 16:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-12 16:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2387>
Commit(s) tested:
a994fec4f8f7a886be61cfb3023c354cd2483b9d
Author(s) (in the same order as the commits):
Franck Jullien <franck.jullien@gmail.com>
Subject:
gdb: Add OpenRISC or1k and or1knd target support
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a9/a994fec4f8f7a886be61cfb3023c354cd2483b9d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-12 13:33 [binutils-gdb] PR22576, ppc64_skip_trampoline_code uses wrong r2 for EXEC_REVERSE sergiodj+buildbot
@ 2017-12-12 14:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-12 14:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2386>
Commit(s) tested:
db9077b7275e86637218a7a7d165cb85a4de116f
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22576, ppc64_skip_trampoline_code uses wrong r2 for EXEC_REVERSE
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/db/db9077b7275e86637218a7a7d165cb85a4de116f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-12 2:28 [binutils-gdb] remote: Return NULL extra_info/name if they are empty sergiodj+buildbot
@ 2017-12-12 4:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-12 4:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2385>
Commit(s) tested:
a933405894161c8b15f675c48d077b7f7d6aabf2
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
remote: Return NULL extra_info/name if they are empty
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a9/a933405894161c8b15f675c48d077b7f7d6aabf2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-11 16:19 [binutils-gdb] [Binutils][Objdump]Check symbol section information while search a mapping symbol backward sergiodj+buildbot
@ 2017-12-11 18:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-11 18:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2383>
Commit(s) tested:
4c5ae11b42433dbffc33fbde75c9e415594504d8
Author(s) (in the same order as the commits):
Renlin Li <renlin.li@arm.com>
Subject:
[Binutils][Objdump]Check symbol section information while search a mapping symbol backward.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4c/4c5ae11b42433dbffc33fbde75c9e415594504d8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-11 14:55 [binutils-gdb] [MPFR] Fix regression on 32-bit host systems sergiodj+buildbot
@ 2017-12-11 15:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-11 15:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2381>
Commit(s) tested:
f2f9e7ecc1f02bfe5da83c38cf356ea96d428c6d
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
[MPFR] Fix regression on 32-bit host systems
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f2/f2f9e7ecc1f02bfe5da83c38cf356ea96d428c6d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-11 8:38 [binutils-gdb] Adapt gdb.ada/variant_record_packed_array.exp to accept reordered components sergiodj+buildbot
@ 2017-12-11 9:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-11 9:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2380>
Commit(s) tested:
c5f9cfc894373abd00ee56c6723ee0ba95a84f95
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Adapt gdb.ada/variant_record_packed_array.exp to accept reordered components
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c5/c5f9cfc894373abd00ee56c6723ee0ba95a84f95/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-11 7:04 [binutils-gdb] (Ada) change tagged types base_address computation sergiodj+buildbot
@ 2017-12-11 8:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-11 8:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2379>
Commit(s) tested:
08f49010a10b1fc98f65aada96e788c87c56ad85
Author(s) (in the same order as the commits):
Xavier Roirand <roirand@adacore.com>
Subject:
(Ada) change tagged types base_address computation
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/08/08f49010a10b1fc98f65aada96e788c87c56ad85/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-10 22:37 [binutils-gdb] Typo fix sergiodj+buildbot
@ 2017-12-10 23:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-10 23:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2377>
Commit(s) tested:
57a2957f2ead9ec2464a1b6fbdb250e90d27afab
Author(s) (in the same order as the commits):
Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
Subject:
Typo fix
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/57/57a2957f2ead9ec2464a1b6fbdb250e90d27afab/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-09 6:59 [binutils-gdb] dwarf2read.c: Rewrite/simplify mock_mapped_index sergiodj+buildbot
@ 2017-12-09 16:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-09 16:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2374>
Commit(s) tested:
a3c5fafd2e0bc8c1ea98c579c0a044c5b324967b
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
dwarf2read.c: Rewrite/simplify mock_mapped_index
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a3/a3c5fafd2e0bc8c1ea98c579c0a044c5b324967b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-09 5:22 [binutils-gdb] dwarf2read.c:mapped_index, use gdb::array_view, simplify symbol table sergiodj+buildbot
@ 2017-12-09 14:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-09 14:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2372>
Commit(s) tested:
f00a2de2a7556c59bce93f7ced44afa8e1bbf7c3
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
dwarf2read.c:mapped_index, use gdb::array_view, simplify symbol table
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f0/f00a2de2a7556c59bce93f7ced44afa8e1bbf7c3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-09 4:00 [binutils-gdb] DWARF-5: .debug_names index consumer sergiodj+buildbot
@ 2017-12-09 12:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-09 12:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2371>
Commit(s) tested:
927aa2e778dce440f4de5de8fc37ead1683a804e
Author(s) (in the same order as the commits):
Jan Kratochvil <jan.kratochvil@redhat.com>
Subject:
DWARF-5: .debug_names index consumer
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/92/927aa2e778dce440f4de5de8fc37ead1683a804e/>
*** Diff to previous build ***
============================
new FAIL: gdb.dlang/watch-loc.exp: disassemble _Dmain
new FAIL: gdb.dlang/watch-loc.exp: x/2i _Dmain+
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-09 2:18 [binutils-gdb] Refactor: Move some generic code out of .gdb_index code sergiodj+buildbot
@ 2017-12-09 9:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-09 9:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2369>
Commit(s) tested:
4b514bc80885fa91e57b9d80f74ea267df343c46
Author(s) (in the same order as the commits):
Jan Kratochvil <jan.kratochvil@redhat.com>
Subject:
Refactor: Move some generic code out of .gdb_index code
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4b/4b514bc80885fa91e57b9d80f74ea267df343c46/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-09 0:04 [binutils-gdb] cc-with-tweaks.sh: Use gdb-add-index.sh sergiodj+buildbot
@ 2017-12-09 5:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-09 5:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2366>
Commit(s) tested:
6432ec65a8822246db5bcede0c6bd3ed0e464a0b
Author(s) (in the same order as the commits):
Jan Kratochvil <jan.kratochvil@redhat.com>
Subject:
cc-with-tweaks.sh: Use gdb-add-index.sh
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/64/6432ec65a8822246db5bcede0c6bd3ed0e464a0b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.threads/sigstep-threads.exp: continue
new FAIL: gdb.threads/sigstep-threads.exp: step 9
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-08 20:59 [binutils-gdb] Fix thinko on dtrace-probe.c:dtrace_process_dof_probe sergiodj+buildbot
@ 2017-12-09 1:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-09 1:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2364>
Commit(s) tested:
92469284a650232768523564f2c715c4ebb57906
Author(s) (in the same order as the commits):
Sergio Durigan Junior <sergiodj@redhat.com>
Subject:
Fix thinko on dtrace-probe.c:dtrace_process_dof_probe
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/92/92469284a650232768523564f2c715c4ebb57906/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-08 19:17 [binutils-gdb] Adjust breakpoint address by clearing non-significant bits sergiodj+buildbot
@ 2017-12-08 22:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-08 22:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2362>
Commit(s) tested:
a0de8c21baf46c40ed8e62faef5f750b1e5453ea
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Adjust breakpoint address by clearing non-significant bits
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a0/a0de8c21baf46c40ed8e62faef5f750b1e5453ea/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-08 16:06 [binutils-gdb] Fix PR 22567: set SAL .section in minsym_found sergiodj+buildbot
@ 2017-12-08 17:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-08 17:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2358>
Commit(s) tested:
6b05c8bd437152d7a3ecfc19074ab243ee6c92f2
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Fix PR 22567: set SAL .section in minsym_found
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6b/6b05c8bd437152d7a3ecfc19074ab243ee6c92f2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-08 6:55 [binutils-gdb] Add aix 64-bit check to bfd_get_sign_extend_vma sergiodj+buildbot
@ 2017-12-08 7:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-08 7:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2355>
Commit(s) tested:
c8bed57010e8789212a6841db4b397b175a00f9e
Author(s) (in the same order as the commits):
Sangamesh Mallayya <sangamesh.swamy@in.ibm.com>
Subject:
Add aix 64-bit check to bfd_get_sign_extend_vma
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c8/c8bed57010e8789212a6841db4b397b175a00f9e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-08 0:32 [binutils-gdb] Validate explicit locations with early termination sergiodj+buildbot
@ 2017-12-08 5:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-08 5:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2354>
Commit(s) tested:
fa6eb693cf43b427474b1d96ce093f6ea9e5da6a
Author(s) (in the same order as the commits):
Keith Seitz <keiths@redhat.com>
Subject:
Validate explicit locations with early termination
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fa/fa6eb693cf43b427474b1d96ce093f6ea9e5da6a/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/callfuncs.exp: return after stop in call dummy preserves register contents
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-07 23:49 [binutils-gdb] Record nested types sergiodj+buildbot
@ 2017-12-08 4:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-08 4:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2353>
Commit(s) tested:
883fd55ab1049333364479a7f5b0c7e61a310bac
Author(s) (in the same order as the commits):
Keith Seitz <keiths@redhat.com>
Subject:
Record nested types
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/88/883fd55ab1049333364479a7f5b0c7e61a310bac/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
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: wrong thread not unwound
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-07 22:54 [binutils-gdb] Fix wrong prefix in py-breakpoint.exp sergiodj+buildbot
@ 2017-12-08 3:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-08 3:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2352>
Commit(s) tested:
ec72db3ef415ebdcedaf36a1d83bd6624ec063e0
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Fix wrong prefix in py-breakpoint.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ec/ec72db3ef415ebdcedaf36a1d83bd6624ec063e0/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-07 22:13 [binutils-gdb] Fix regression in "commands" sergiodj+buildbot
@ 2017-12-08 1:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-08 1:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2351>
Commit(s) tested:
99598d713f45d1b26015ec3562d160dc2b3792e4
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Fix regression in "commands"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/99/99598d713f45d1b26015ec3562d160dc2b3792e4/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/annota1.exp: run until main breakpoint
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-07 19:41 [binutils-gdb] Fix build with g++ 6.3.1 sergiodj+buildbot
@ 2017-12-08 0:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-08 0:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2350>
Commit(s) tested:
23a8d1862b7e5b95f0fe9d724c6be326e545e6d1
Author(s) (in the same order as the commits):
Adam Stylinski <adam.stylinski@etegent.com>
Subject:
Fix build with g++ 6.3.1
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/23/23a8d1862b7e5b95f0fe9d724c6be326e545e6d1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-07 17:45 [binutils-gdb] Add virtual destructor to selftest sergiodj+buildbot
@ 2017-12-07 21:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-07 21:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2348>
Commit(s) tested:
30970df7d56bd65657c97296f31fe9862bf27e1d
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Add virtual destructor to selftest
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/30/30970df7d56bd65657c97296f31fe9862bf27e1d/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-06 23:13 [binutils-gdb] target_set_syscall_catchpoint, use gdb::array_view and bool sergiodj+buildbot
@ 2017-12-07 2:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-07 2:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2345>
Commit(s) tested:
649a140ccf129ff79ea55ac0cc23ebddec0f02ef
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
target_set_syscall_catchpoint, use gdb::array_view and bool
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/64/649a140ccf129ff79ea55ac0cc23ebddec0f02ef/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-06 8:12 [binutils-gdb] dyn_relocs tidy sergiodj+buildbot
@ 2017-12-06 19:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-06 19:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2340>
Commit(s) tested:
3bf083ed23b1337341129b810ed5da29ba8207f9
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
dyn_relocs tidy
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3b/3bf083ed23b1337341129b810ed5da29ba8207f9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-06 2:59 [binutils-gdb] Split tdesc_type into multiple classes sergiodj+buildbot
@ 2017-12-06 15:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-06 15:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2337>
Commit(s) tested:
d4a0e8b57d6f85e4ee4a31e0e6929ff5b4fd9823
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Split tdesc_type into multiple classes
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d4/d4a0e8b57d6f85e4ee4a31e0e6929ff5b4fd9823/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-06 5:26 [binutils-gdb] Make tdesc_type::u::u::fields an std::vector sergiodj+buildbot
@ 2017-12-06 12:48 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-06 12:48 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2335>
Commit(s) tested:
d05200d155f065b93e2dc353a7d33408c7574e9c
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make tdesc_type::u::u::fields an std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d0/d05200d155f065b93e2dc353a7d33408c7574e9c/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw on: step in ro region
PASS -> FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: thread advanced
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-06 1:26 [binutils-gdb] Make tdesc_type::name an std::string sergiodj+buildbot
@ 2017-12-06 11:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-06 11:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2334>
Commit(s) tested:
082b9140d953b9e6a78271384ec48ff5d0ba8fad
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make tdesc_type::name an std::string
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/08/082b9140d953b9e6a78271384ec48ff5d0ba8fad/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-06 1:05 [binutils-gdb] Make tdesc_feature::types an std::vector sergiodj+buildbot
@ 2017-12-06 10:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-06 10:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2333>
Commit(s) tested:
53c934e9fed9a35542661690e4e71febcbebb539
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make tdesc_feature::types an std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/53/53c934e9fed9a35542661690e4e71febcbebb539/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw on: step in ro region
PASS -> FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: thread advanced
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-06 0:44 [binutils-gdb] Make tdesc_reg string fields std::string sergiodj+buildbot
@ 2017-12-06 8:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-06 8:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2332>
Commit(s) tested:
a8142ee195063e8c7202429e80ee58185c34b3fc
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Make tdesc_reg string fields std::string
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a8/a8142ee195063e8c7202429e80ee58185c34b3fc/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: step in ro region
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-06 0:22 [binutils-gdb] Make target_desc::features an std::vector sergiodj+buildbot
@ 2017-12-06 4:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-06 4:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2329>
Commit(s) tested:
3eea796c5daeb7b60531fc3d707470fa91a86e11
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make target_desc::features an std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3e/3eea796c5daeb7b60531fc3d707470fa91a86e11/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-05 23:22 [binutils-gdb] Make target_desc::compatible an std::vector sergiodj+buildbot
@ 2017-12-06 3:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-06 3:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2328>
Commit(s) tested:
40e2a9835f6cf47b630babef3fd788e413ef2dc5
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make target_desc::compatible an std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/40/40e2a9835f6cf47b630babef3fd788e413ef2dc5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-05 22:53 [binutils-gdb] Make target_desc::properties an std::vector sergiodj+buildbot
@ 2017-12-06 1:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-06 1:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2327>
Commit(s) tested:
129c10bcb9b3bc2ed9682040aa9a0d144bb5e959
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make target_desc::properties an std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/12/129c10bcb9b3bc2ed9682040aa9a0d144bb5e959/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-05 22:06 [binutils-gdb] Redefine gdb_static_assert as static_assert sergiodj+buildbot
@ 2017-12-05 23:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-05 23:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2326>
Commit(s) tested:
ed9376bd95c52ba00aa37b224b4407030a00d184
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Redefine gdb_static_assert as static_assert
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ed/ed9376bd95c52ba00aa37b224b4407030a00d184/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-04 18:58 [binutils-gdb] Implement "-a" command line option for gcore sergiodj+buildbot
@ 2017-12-04 22:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-04 22:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2322>
Commit(s) tested:
cd93789b89f55355d3eeda6c31ed7bd0ed318acd
Author(s) (in the same order as the commits):
Sergio Lopez <slp@redhat.com>
Subject:
Implement "-a" command line option for gcore
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cd/cd93789b89f55355d3eeda6c31ed7bd0ed318acd/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-04 18:27 [binutils-gdb] Document new {set, show} dump-excluded-mappings commands sergiodj+buildbot
@ 2017-12-04 21:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-04 21:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2321>
Commit(s) tested:
1e52e8495a074c9d1f7ef17f13b9060b76be6f41
Author(s) (in the same order as the commits):
Sergio Lopez <slp@redhat.com>
Subject:
Document new {set,show} dump-excluded-mappings commands.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1e/1e52e8495a074c9d1f7ef17f13b9060b76be6f41/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-04 12:57 [binutils-gdb] x86 map file textrel sergiodj+buildbot
@ 2017-12-04 15:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-04 15:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2317>
Commit(s) tested:
826c3f1edc2f9da4594aed86b57a7b447a46016d
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
x86 map file textrel
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/82/826c3f1edc2f9da4594aed86b57a7b447a46016d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 18:49 [binutils-gdb] Remove mem_region_vector typedef sergiodj+buildbot
@ 2017-12-04 14:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-04 14:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2316>
Commit(s) tested:
1e97a22796cced8bba3359df46e8c2883653516f
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove mem_region_vector typedef
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1e/1e97a22796cced8bba3359df46e8c2883653516f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 18:21 [binutils-gdb] Make make-target-delegates grok namespace scope op and template params sergiodj+buildbot
@ 2017-12-04 12:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-04 12:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2315>
Commit(s) tested:
10f64178412d9c6e4f2faade0da271ab8be273c9
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Make make-target-delegates grok namespace scope op and template params
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/10/10f64178412d9c6e4f2faade0da271ab8be273c9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 16:34 [binutils-gdb] Fix gdb.threads/process-dies-while-detaching.exp sergiodj+buildbot
@ 2017-12-04 10:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-04 10:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2314>
Commit(s) tested:
f0fb2488c93c00fa1436a4813a375faa00a94de5
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix gdb.threads/process-dies-while-detaching.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f0/f0fb2488c93c00fa1436a4813a375faa00a94de5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 9:36 [binutils-gdb] Remove for_each_inferior sergiodj+buildbot
@ 2017-12-04 3:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-04 3:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2310>
Commit(s) tested:
f004534791145669d7765f8122e48f21e1deeb94
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove for_each_inferior
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f0/f004534791145669d7765f8122e48f21e1deeb94/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 8:58 [binutils-gdb] Update comments sergiodj+buildbot
@ 2017-12-04 0:49 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-04 0:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2308>
Commit(s) tested:
8f86d7aa8504e9a557e807a3e37718055befcd84
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Update comments
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8f/8f86d7aa8504e9a557e807a3e37718055befcd84/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 8:38 [binutils-gdb] Remove usages of find_inferior that call proceed_one_lwp sergiodj+buildbot
@ 2017-12-03 23:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-03 23:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2307>
Commit(s) tested:
e2b4407579df508f85de961dd693c9028e79d823
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove usages of find_inferior that call proceed_one_lwp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e2/e2b4407579df508f85de961dd693c9028e79d823/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 13:24 [binutils-gdb] Remove usage of find_inferior in linux_resume sergiodj+buildbot
@ 2017-12-03 22:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-03 22:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2306>
Commit(s) tested:
c80825ff32ba805982ef5e66e4fa1a80e019d47d
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove usage of find_inferior in linux_resume
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c8/c80825ff32ba805982ef5e66e4fa1a80e019d47d/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 7:50 [binutils-gdb] Remove usages of find_inferior in stop_all_lwps sergiodj+buildbot
@ 2017-12-03 21:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-03 21:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2305>
Commit(s) tested:
df3e4dbe661e522cc63d3dab15c3974713fba4dd
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove usages of find_inferior in stop_all_lwps
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/df/df3e4dbe661e522cc63d3dab15c3974713fba4dd/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 12:00 [binutils-gdb] Remove usage of find_inferior in linux_stabilize_threads sergiodj+buildbot
@ 2017-12-03 19:48 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-03 19:48 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2304>
Commit(s) tested:
5a6b0a41dfc9b860f285ddb3a1e518299f614cd3
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove usage of find_inferior in linux_stabilize_threads
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5a/5a6b0a41dfc9b860f285ddb3a1e518299f614cd3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 10:23 [binutils-gdb] Remove usages of find_inferior calling not_stopped_callback sergiodj+buildbot
@ 2017-12-03 17:08 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-03 17:08 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2302>
Commit(s) tested:
a1385b7b881d2b129f8c26fac8ad20bc406a1a6d
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove usages of find_inferior calling not_stopped_callback
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a1/a1385b7b881d2b129f8c26fac8ad20bc406a1a6d/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 4:22 [binutils-gdb] Remove usage of find_inferior in last_thread_of_process_p sergiodj+buildbot
@ 2017-12-03 12:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-03 12:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2298>
Commit(s) tested:
e4eb0dec0b9219a27ea6b9769f098fff34612779
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove usage of find_inferior in last_thread_of_process_p
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e4/e4eb0dec0b9219a27ea6b9769f098fff34612779/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 6:09 [binutils-gdb] Remove find_inferior_in_random sergiodj+buildbot
@ 2017-12-03 10:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-03 10:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2297>
Commit(s) tested:
83e1b6c13a285b4e1e852e1647667f09bb26892b
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove find_inferior_in_random
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/83/83e1b6c13a285b4e1e852e1647667f09bb26892b/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 3:14 [binutils-gdb] Remove find_inferior_id sergiodj+buildbot
@ 2017-12-03 9:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-03 9:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2296>
Commit(s) tested:
8dc7b443a6295da4b3d7ba22f3a7695990bf4f39
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove find_inferior_id
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8d/8dc7b443a6295da4b3d7ba22f3a7695990bf4f39/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 2:14 [binutils-gdb] Remove usage of find_inferior in regcache_invalidate_pid sergiodj+buildbot
@ 2017-12-03 4:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-03 4: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/2292>
Commit(s) tested:
634a3254c8fe1728c0202289afe594928094d860
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove usage of find_inferior in regcache_invalidate_pid
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/63/634a3254c8fe1728c0202289afe594928094d860/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-03 1:53 [binutils-gdb] Fix typo in poison.h sergiodj+buildbot
@ 2017-12-03 2:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-03 2:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2291>
Commit(s) tested:
6d83e819df0c71868d04db46c60ff0ecf8cf1914
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Fix typo in poison.h
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6d/6d83e819df0c71868d04db46c60ff0ecf8cf1914/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-02 2:52 [binutils-gdb] Add support for the readnever concept sergiodj+buildbot
@ 2017-12-02 3:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-02 3:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2290>
Commit(s) tested:
97cbe998d0dd5c13a0317fbb24d745da367d8caa
Author(s) (in the same order as the commits):
Sergio Durigan Junior <sergiodj@redhat.com>
Subject:
Add support for the readnever concept
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/97/97cbe998d0dd5c13a0317fbb24d745da367d8caa/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-01 22:25 [binutils-gdb] Revert "Add support for the readnever concept" sergiodj+buildbot
@ 2017-12-01 23:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-01 23:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2288>
Commit(s) tested:
7f0f8ac8b15f5f5327116614b4137e5dd533ada2
Author(s) (in the same order as the commits):
Sergio Durigan Junior <sergiodj@redhat.com>
Subject:
Revert "Add support for the readnever concept"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7f/7f0f8ac8b15f5f5327116614b4137e5dd533ada2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-01 17:42 [binutils-gdb] Use consistent types for holding instructions, instruction masks, etc sergiodj+buildbot
@ 2017-12-01 18:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-01 18:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2285>
Commit(s) tested:
0f873fd58b51a2906f31bb445ab685da04a1be23
Author(s) (in the same order as the commits):
Peter Bergner <bergner@vnet.ibm.com>
Subject:
Use consistent types for holding instructions, instruction masks, etc.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0f/0f873fd58b51a2906f31bb445ab685da04a1be23/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-01 13:57 [binutils-gdb] Update GDB's list of maintainers to reflect today's reality sergiodj+buildbot
@ 2017-12-01 15:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-01 15:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2283>
Commit(s) tested:
2ee0c9b3eedca5d1071870334d2721be80a77ea1
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Update GDB's list of maintainers to reflect today's reality
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2e/2ee0c9b3eedca5d1071870334d2721be80a77ea1/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-01 12:37 [binutils-gdb] x86: Print dynreloc in readonly section for map file output sergiodj+buildbot
@ 2017-12-01 14:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-01 14:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2282>
Commit(s) tested:
92f402a7e03f5d747bc9a09c8da2f61cc539ac33
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Print dynreloc in readonly section for map file output
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/92/92f402a7e03f5d747bc9a09c8da2f61cc539ac33/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-01 12:00 [binutils-gdb] Replace mail address with the URL in copyright header sergiodj+buildbot
@ 2017-12-01 13:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-01 13:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2281>
Commit(s) tested:
1cc75e929ff4e99b3bef4ca0e93250d5b1b126c9
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Replace mail address with the URL in copyright header
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1c/1cc75e929ff4e99b3bef4ca0e93250d5b1b126c9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-12-01 0:13 [binutils-gdb] New gdb.ada/repeat_dyn testcase sergiodj+buildbot
@ 2017-12-01 9:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-01 9:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2279>
Commit(s) tested:
875fb7a785e78fddef6da270636e8f4efbfd3e0d
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
New gdb.ada/repeat_dyn testcase.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/87/875fb7a785e78fddef6da270636e8f4efbfd3e0d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-30 17:48 [binutils-gdb] Use boards/local-board.exp more sergiodj+buildbot
@ 2017-12-01 5:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-01 5:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2276>
Commit(s) tested:
f1af7b94c16029f2c6da9eae4076f64cd9383687
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Use boards/local-board.exp more
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f1/f1af7b94c16029f2c6da9eae4076f64cd9383687/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-30 16:51 [binutils-gdb] Fix gdb.linespec/cpls-ops.exp on 32-bit sergiodj+buildbot
@ 2017-12-01 4:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-12-01 4:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2275>
Commit(s) tested:
e3919f3e898aa5ab9a98dcaf9e242a9ebacc0757
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix gdb.linespec/cpls-ops.exp on 32-bit
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e3/e3919f3e898aa5ab9a98dcaf9e242a9ebacc0757/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-30 10:44 [binutils-gdb] Fix sol-thread.c compilation on Solaris sergiodj+buildbot
@ 2017-11-30 19:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-30 19:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2271>
Commit(s) tested:
e8020e54f4b9ac05150c4b02fa81e228d6cf1f6a
Author(s) (in the same order as the commits):
Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
Subject:
Fix sol-thread.c compilation on Solaris
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e8/e8020e54f4b9ac05150c4b02fa81e228d6cf1f6a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-30 1:14 [binutils-gdb] Define MPFR_USE_INTMAX_T so that mpfr.h assumes intmax_t is available sergiodj+buildbot
@ 2017-11-30 18:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-30 18:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2270>
Commit(s) tested:
7505954411a168f5c5b9adec23eac55b1532fbe6
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Define MPFR_USE_INTMAX_T so that mpfr.h assumes intmax_t is available.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/75/7505954411a168f5c5b9adec23eac55b1532fbe6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-29 22:06 [binutils-gdb] Breakpoints in symbols with ABI tags (PR c++/19436) sergiodj+buildbot
@ 2017-11-30 14:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-30 14:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2268>
Commit(s) tested:
bd69330db86b2367aac8aac5915f1686451c9d5d
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Breakpoints in symbols with ABI tags (PR c++/19436)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bd/bd69330db86b2367aac8aac5915f1686451c9d5d/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-29 21:46 [binutils-gdb] Make "break foo" find "A::foo", A::B::foo", etc. [C++ and wild matching] sergiodj+buildbot
@ 2017-11-30 12:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-30 12:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2267>
Commit(s) tested:
a20714ff39f621961151d0c204e89062ab2107eb
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Make "break foo" find "A::foo", A::B::foo", etc. [C++ and wild matching]
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a2/a20714ff39f621961151d0c204e89062ab2107eb/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-29 14:12 [binutils-gdb] [gdb/testsuite] Fix return type of psymtab-parameter sergiodj+buildbot
@ 2017-11-29 20:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-29 20:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2259>
Commit(s) tested:
ed6c0bfb2643861636581ac8775144efa1728c7c
Author(s) (in the same order as the commits):
Thomas Preud'homme <thomas.preudhomme@arm.com>
Subject:
[gdb/testsuite] Fix return type of psymtab-parameter
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ed/ed6c0bfb2643861636581ac8775144efa1728c7c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-29 11:10 [binutils-gdb] [gdb/testsuite] Fix wrong return type in tests sergiodj+buildbot
@ 2017-11-29 18:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-29 18:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2258>
Commit(s) tested:
f106e10e5e80265e1c43532bba4cb997a7dfa022
Author(s) (in the same order as the commits):
Thomas Preud'homme <thomas.preudhomme@arm.com>
Subject:
[gdb/testsuite] Fix wrong return type in tests
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f1/f106e10e5e80265e1c43532bba4cb997a7dfa022/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-28 12:59 [binutils-gdb] Copying symbol type in ld script assignments sergiodj+buildbot
@ 2017-11-29 5:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-29 5:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2252>
Commit(s) tested:
cd5b2babea487b0a71a14b593af98330efd8d73e
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Copying symbol type in ld script assignments
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cd/cd5b2babea487b0a71a14b593af98330efd8d73e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-28 11:31 [binutils-gdb] Remove REMOTE_OBS sergiodj+buildbot
@ 2017-11-29 1:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-29 1:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2250>
Commit(s) tested:
18ca73470a0d7eb96a807c97559cbb9fddb4b461
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove REMOTE_OBS
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/18/18ca73470a0d7eb96a807c97559cbb9fddb4b461/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-28 6:09 [binutils-gdb] Move target object files to target subdirectory sergiodj+buildbot
@ 2017-11-28 23:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-28 23:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2249>
Commit(s) tested:
66599a7dc0369583229c0c51e5e009cfa7cceb73
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Move target object files to target subdirectory
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/66/66599a7dc0369583229c0c51e5e009cfa7cceb73/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-28 1:23 [binutils-gdb] Move cli object files to cli subdirectory sergiodj+buildbot
@ 2017-11-28 4:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-28 4:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2239>
Commit(s) tested:
f06afa533665d88c651617de528b9640eb4e8611
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Move cli object files to cli subdirectory
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f0/f06afa533665d88c651617de528b9640eb4e8611/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-28 0:24 [binutils-gdb] A simpler way to make the "arch" build directory sergiodj+buildbot
@ 2017-11-28 2:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-28 2:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2238>
Commit(s) tested:
b22c88c2ca013cc25d7a8fcbc748122bb1a349bb
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
A simpler way to make the "arch" build directory
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b2/b22c88c2ca013cc25d7a8fcbc748122bb1a349bb/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-27 1:09 [binutils-gdb] python: Fix memleak in do_start_initialization sergiodj+buildbot
@ 2017-11-27 8:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-27 8:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2232>
Commit(s) tested:
e8e7d10c39955e7ff99ff42f6f16d6befe2fa12e
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
python: Fix memleak in do_start_initialization
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e8/e8e7d10c39955e7ff99ff42f6f16d6befe2fa12e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-26 16:58 [binutils-gdb] [spu] Fix single-stepping regression sergiodj+buildbot
@ 2017-11-26 18:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-26 18:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2224>
Commit(s) tested:
5ffd2cb722440053267d0db52df8bbd278fd6d91
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
[spu] Fix single-stepping regression
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5f/5ffd2cb722440053267d0db52df8bbd278fd6d91/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:63
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-25 14:48 [binutils-gdb] Fix PR gdb/22491: Regression when setting SystemTap probe semaphores sergiodj+buildbot
@ 2017-11-26 3:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-26 3:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2222>
Commit(s) tested:
685de8c2990a04fba5e2954b7ff089a2c641071f
Author(s) (in the same order as the commits):
Sergio Durigan Junior <sergiodj@redhat.com>
Subject:
Fix PR gdb/22491: Regression when setting SystemTap probe semaphores
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/68/685de8c2990a04fba5e2954b7ff089a2c641071f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-25 4:19 [binutils-gdb] Fix completing an empty string sergiodj+buildbot
@ 2017-11-25 23:30 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 23:30 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2220>
Commit(s) tested:
a81aaca0578ee91ce1cee56c0a31e26c2a5ef581
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix completing an empty string
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a8/a81aaca0578ee91ce1cee56c0a31e26c2a5ef581/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-25 8:52 [binutils-gdb] Add comprehensive C++ operator linespec/location/completion tests sergiodj+buildbot
@ 2017-11-25 21:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 21:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2219>
Commit(s) tested:
6a3c6ee41898743234d8fd9f9cab15f2ecdaba49
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add comprehensive C++ operator linespec/location/completion tests
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6a/6a3c6ee41898743234d8fd9f9cab15f2ecdaba49/>
*** Diff to previous build ***
============================
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator n"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator n"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator ne"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator ne"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator new"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator new"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator new
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator new
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: compare "b test_op_new::operator new
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b test_op_new::operator new "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b test_op_new::operator new "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: compare "b test_op_new::operator new" completion list with bp location list: matches
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator n"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator n"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator ne"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator ne"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator new"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator new"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: compare "b -function test_op_new::operator new
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: tab complete "b -function test_op_new::operator new "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: cmd complete "b -function test_op_new::operator new "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new: compare "b -function test_op_new::operator new" completion list with bp location list: matches
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator n"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator n"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator ne"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator ne"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator new"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator new"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator new["
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator new["
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator new[]"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator new[]"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator new[]
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator new[]
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b test_op_new_array::operator new[]
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator new "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator new "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b test_op_new_array::operator new []
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b test_op_new_array::operator new []
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b test_op_new_array::operator new[]" completion list with bp location list: matches
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b test_op_new_array::operator new []
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator n"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator n"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator ne"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator ne"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator new"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator new"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator new["
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator new["
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator new[]"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator new[]"
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator new[]
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator new[]
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b -function test_op_new_array::operator new[]
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: tab complete "b -function test_op_new_array::operator new "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: cmd complete "b -function test_op_new_array::operator new "
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b -function test_op_new_array::operator new[]" completion list with bp location list: matches
new FAIL: gdb.linespec/cpls-ops.exp: operator-new[]: compare "b -function test_op_new_array::operator new []
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-25 2:17 [binutils-gdb] Make strcmp_iw NOT ignore whitespace in the middle of tokens sergiodj+buildbot
@ 2017-11-25 18:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 18:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2217>
Commit(s) tested:
0662b6a7c1b3b04a4ca31a09af703c91c7aa9646
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Make strcmp_iw NOT ignore whitespace in the middle of tokens
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/06/0662b6a7c1b3b04a4ca31a09af703c91c7aa9646/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-25 3:37 [binutils-gdb] Revert "elf: Properly compute offsets of note descriptor and next note" sergiodj+buildbot
@ 2017-11-25 12:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 12:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2212>
Commit(s) tested:
4e25ac038efbe5293885cc75d8a3e08b23da7cc9
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Revert "elf: Properly compute offsets of note descriptor and next note"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4e/4e25ac038efbe5293885cc75d8a3e08b23da7cc9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 23:37 [binutils-gdb] Workaround build bug with GCC 6.2.1 sergiodj+buildbot
@ 2017-11-25 10:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 10:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2211>
Commit(s) tested:
30649c145114fe3aac089bf06e9457238d46341b
Author(s) (in the same order as the commits):
Philipp Rudo <prudo@linux.vnet.ibm.com>
Subject:
Workaround build bug with GCC 6.2.1
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/30/30649c145114fe3aac089bf06e9457238d46341b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 22:43 [binutils-gdb] Fix aarch64-none-elf build error sergiodj+buildbot
@ 2017-11-25 8:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 8:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2210>
Commit(s) tested:
7696f5c95761be03db7ac62683aa027ecea30fa7
Author(s) (in the same order as the commits):
Alan Hayward <alan.hayward@arm.com>
Subject:
Fix aarch64-none-elf build error
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/76/7696f5c95761be03db7ac62683aa027ecea30fa7/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 20:32 [binutils-gdb] Create private_thread_info hierarchy sergiodj+buildbot
@ 2017-11-25 5:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 5:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2208>
Commit(s) tested:
7aabaf9d4ad52a1df1f551908fbd8cafc5e7597a
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Create private_thread_info hierarchy
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7a/7aabaf9d4ad52a1df1f551908fbd8cafc5e7597a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
@ 2017-11-25 4:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 4:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2207>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 19:27 [binutils-gdb] Create private_inferior class hierarchy sergiodj+buildbot
@ 2017-11-25 2:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 2:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2206>
Commit(s) tested:
089354bb0613ca1559813f0a79fbe73655113785
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Create private_inferior class hierarchy
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/08/089354bb0613ca1559813f0a79fbe73655113785/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/sigstep-threads.exp: continue
new FAIL: gdb.threads/sigstep-threads.exp: step 1
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 16:34 [binutils-gdb] elf: Properly compute offsets of note descriptor and next note sergiodj+buildbot
@ 2017-11-24 22:08 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 22:08 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2203>
Commit(s) tested:
650444eb540f9fd85e821567a3f943b4bc41b8be
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
elf: Properly compute offsets of note descriptor and next note
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/65/650444eb540f9fd85e821567a3f943b4bc41b8be/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/i386-biarch-core.exp: load core file
PASS -> FAIL: gdb.arch/i386-biarch-core.exp: .text is readable
PASS -> FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump
PASS -> FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
PASS -> FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Anonymous: load core
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Anonymous: loading /home/qiyao/buildbot/ubuntu-aarch32-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
PASS -> FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Private-Anonymous: no binary: load core
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Private-Anonymous: no binary: loading /home/qiyao/buildbot/ubuntu-aarch32-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
PASS -> FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Shared-Anonymous: load core
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Shared-Anonymous: loading /home/qiyao/buildbot/ubuntu-aarch32-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
PASS -> FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Shared-Anonymous: no binary: load core
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Shared-Anonymous: no binary: loading /home/qiyao/buildbot/ubuntu-aarch32-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
PASS -> FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for DoNotDump: load core
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for DoNotDump: loading /home/qiyao/buildbot/ubuntu-aarch32-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
PASS -> FAIL: gdb.base/coredump-filter.exp: disassembling function main for DoNotDump: no binary: load core
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for DoNotDump: no binary: loading /home/qiyao/buildbot/ubuntu-aarch32-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
PASS -> FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Shared-Anon-File: no binary: load core
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Shared-Anon-File: no binary: loading /home/qiyao/buildbot/ubuntu-aarch32-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-shared-anon-file.gcore
PASS -> FAIL: gdb.base/gcore.exp: re-load generated corefile
PASS -> FAIL: gdb.base/gcore-relro.exp: re-load generated corefile
PASS -> FAIL: gdb.base/gcore-relro.exp: library got loaded
PASS -> FAIL: gdb.base/gcore-relro-pie.exp: re-load generated corefile
PASS -> FAIL: gdb.base/gcore-relro-pie.exp: x/i $pc
PASS -> FAIL: gdb.base/gcore-relro-pie.exp: unstripped + core ok
PASS -> FAIL: gdb.base/info-proc.exp: core info-proc.gcore
PASS -> FAIL: gdb.base/info-proc.exp: info proc mapping with core file
PASS -> FAIL: gdb.base/print-symbol-loading.exp: core off: re-load generated corefile
PASS -> FAIL: gdb.base/print-symbol-loading.exp: core off: library got loaded
PASS -> FAIL: gdb.base/print-symbol-loading.exp: core brief: re-load generated corefile
PASS -> FAIL: gdb.base/print-symbol-loading.exp: core brief: library got loaded
PASS -> FAIL: gdb.base/print-symbol-loading.exp: core full: re-load generated corefile
PASS -> FAIL: gdb.base/print-symbol-loading.exp: core full: load shared-lib
PASS -> FAIL: gdb.base/print-symbol-loading.exp: core full: library got loaded
PASS -> FAIL: gdb.base/siginfo-obj.exp: core siginfo-obj.gcore
PASS -> FAIL: gdb.base/siginfo-obj.exp: p $_siginfo.si_signo from core file
PASS -> FAIL: gdb.base/siginfo-obj.exp: p $_siginfo.si_errno from core file
PASS -> FAIL: gdb.base/siginfo-obj.exp: p $_siginfo.si_code from core file
PASS -> FAIL: gdb.base/siginfo-obj.exp: p $_siginfo._sifields._sigfault.si_addr from core file
PASS -> FAIL: gdb.base/siginfo-thread.exp: core siginfo-thread.gcore
PASS -> FAIL: gdb.base/siginfo-thread.exp: p $_siginfo.si_signo from core file
PASS -> FAIL: gdb.base/siginfo-thread.exp: p $_siginfo.si_errno from core file
PASS -> FAIL: gdb.base/siginfo-thread.exp: p $_siginfo.si_code from core file
PASS -> FAIL: gdb.base/siginfo-thread.exp: p $_siginfo._sifields._sigfault.si_addr from core file
PASS -> FAIL: gdb.base/siginfo-thread.exp: update counter in thread 1
PASS -> FAIL: gdb.base/siginfo-thread.exp: update counter in thread 2
PASS -> FAIL: gdb.base/siginfo-thread.exp: print $count
PASS -> FAIL: gdb.base/solib-search.exp: re-load generated corefile
PASS -> FAIL: gdb.base/vdso-warning.exp: core: startup
PASS -> FAIL: gdb.reverse/break-precsave.exp: reload precord save file
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: foo
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: bar
PASS -> FAIL: gdb.reverse/break-precsave.exp: go to end of main forward
PASS -> FAIL: gdb.reverse/break-precsave.exp: set reverse
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: bar backward
PASS -> FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: foo backward
PASS -> FAIL: gdb.reverse/break-precsave.exp: main backward
PASS -> FAIL: gdb.reverse/break-precsave.exp: set forward
PASS -> FAIL: gdb.reverse/break-precsave.exp: end of record log
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: reload precord save file
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: continue to breakpoint in foo
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: get breakpoint address for foo
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: set bp, 2nd instr
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: stopped at bp, 2nd instr
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: set reverse execution
PASS -> FAIL: gdb.reverse/consecutive-precsave.exp: stopped at bp in reverse, 1st instr
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reload precord save file
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: finish from long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: set reverse execution
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: reverse finish from void_func
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reload prec save file
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: go to end of main forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 85
new FAIL: gdb.reverse/machinestate-precsave.exp: step
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module global forward past bp
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 71
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module static forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 57
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static reverse-step
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 45
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var reverse-step
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 33
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var reverse-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var step post-change
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var reverse step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: reverse to main
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 33
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: register var forward step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 45
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: auto var step post-change
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 57
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static forward-breakpoint
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static forward step-to
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: function static step post-change
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 71
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module static step post-change
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: forward to 85
PASS -> FAIL: gdb.reverse/machinestate-precsave.exp: module global step post-change
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reload precord save file
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to EMT
new FAIL: gdb.reverse/sigall-precsave.exp: get signal EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to LOST
new FAIL: gdb.reverse/sigall-precsave.exp: get signal LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to POLL
new FAIL: gdb.reverse/sigall-precsave.exp: get signal POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to WIND
new FAIL: gdb.reverse/sigall-precsave.exp: get signal WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to PHONE
new FAIL: gdb.reverse/sigall-precsave.exp: get signal PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to WAITING
new FAIL: gdb.reverse/sigall-precsave.exp: get signal WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to LWP
new FAIL: gdb.reverse/sigall-precsave.exp: get signal LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to DANGER
new FAIL: gdb.reverse/sigall-precsave.exp: get signal DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to GRANT
new FAIL: gdb.reverse/sigall-precsave.exp: get signal GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to RETRACT
new FAIL: gdb.reverse/sigall-precsave.exp: get signal RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to MSG
new FAIL: gdb.reverse/sigall-precsave.exp: get signal MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to SOUND
new FAIL: gdb.reverse/sigall-precsave.exp: get signal SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to SAK
new FAIL: gdb.reverse/sigall-precsave.exp: get signal SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to PRIO
new FAIL: gdb.reverse/sigall-precsave.exp: get signal PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 33
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 34
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 35
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 36
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 37
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 38
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 39
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 40
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 41
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 42
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 43
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 44
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 45
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 46
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 47
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 48
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 49
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 50
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 51
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 52
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 53
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 54
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 55
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 56
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 57
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 58
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 59
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 60
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 61
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 62
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to 63
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: advance to TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: get signal TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: send signal TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: continue to sigall exit
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TERM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_63
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_62
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_61
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_60
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_59
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_58
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_57
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_56
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_55
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_54
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_53
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_52
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_51
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_50
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_49
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_48
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_47
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_46
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_45
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_44
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_43
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_42
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_41
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_40
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_39
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_38
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_37
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_36
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_35
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_34
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_33
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PRIO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SAK
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SOUND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_MSG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_RETRACT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_GRANT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_DANGER
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_LWP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_WAITING
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PHONE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_WIND
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_POLL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PWR
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_USR2
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_USR1
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_LOST
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_WINCH
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PROF
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_VTALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_XFSZ
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_XCPU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_IO
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TTOU
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TTIN
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_CHLD
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_CONT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TSTP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_URG
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_ALRM
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PIPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SYS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SEGV
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_BUS
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_FPE
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_EMT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_ILL
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_QUIT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_HUP
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of ABRT
PASS -> FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_ABRT
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reload core file
PASS -> FAIL: gdb.reverse/solib-precsave.exp: run until end part one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step third shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step second shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step first shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step generic
PASS -> FAIL: gdb.reverse/solib-precsave.exp: forward to end part one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next third shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next second shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next first shr1
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next generic
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: run until end part two
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function one
PASS -> FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function two
PASS -> FAIL: gdb.reverse/step-precsave.exp: reload core file
PASS -> FAIL: gdb.reverse/step-precsave.exp: next test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: step test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: next test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: step test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: step up to call
PASS -> FAIL: gdb.reverse/step-precsave.exp: next over call
PASS -> FAIL: gdb.reverse/step-precsave.exp: step into call
PASS -> FAIL: gdb.reverse/step-precsave.exp: finish out of fn call
PASS -> FAIL: gdb.reverse/step-precsave.exp: simple stepi
PASS -> FAIL: gdb.reverse/step-precsave.exp: stepi into function call
PASS -> FAIL: gdb.reverse/step-precsave.exp: stepi back from function call
PASS -> FAIL: gdb.reverse/step-precsave.exp: set reverse execution
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse stepi thru function return
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 into fn call
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/until-precsave.exp: reload core file
PASS -> FAIL: gdb.reverse/until-precsave.exp: until line number
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to factorial
PASS -> FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function
PASS -> FAIL: gdb.reverse/until-precsave.exp: finish to main
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial
PASS -> FAIL: gdb.reverse/watch-precsave.exp: reload core file
PASS -> FAIL: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker1
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/watch-precsave.exp: set reverse
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: set forward
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fifth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: replay forward to marker2
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, first time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, second time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, third time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fourth time
PASS -> FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fifth time
PASS -> FAIL: gdb.threads/gcore-thread.exp: corefile: re-load generated corefile
PASS -> FAIL: gdb.threads/gcore-thread.exp: core0file: re-load generated corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.threads/tls-core.exp: load generated corefile
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 14:23 [binutils-gdb] regcache::cooked_read unit test sergiodj+buildbot
@ 2017-11-24 19:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 19:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2201>
Commit(s) tested:
1b30aaa56607a563fa263b9d2ee9eba89d79c1b4
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
regcache::cooked_read unit test
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1b/1b30aaa56607a563fa263b9d2ee9eba89d79c1b4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 13:09 [binutils-gdb] Use flexible target descriptors for aarch64 sergiodj+buildbot
@ 2017-11-24 17:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 17:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2199>
Commit(s) tested:
49bdb7ee48a10581e9f7254782f2eb953c4a164b
Author(s) (in the same order as the commits):
Alan Hayward <alan.hayward@arm.com>
Subject:
Use flexible target descriptors for aarch64
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/49/49bdb7ee48a10581e9f7254782f2eb953c4a164b/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: step in ro region
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 13:16 [binutils-gdb] gdbserver: add aarch64_create_target_description sergiodj+buildbot
@ 2017-11-24 15:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 15:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2198>
Commit(s) tested:
d6d7ce56231ca8c233e64b2ebcb910fe334d6ff8
Author(s) (in the same order as the commits):
Alan Hayward <alan.hayward@arm.com>
Subject:
gdbserver: add aarch64_create_target_description
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d6/d6d7ce56231ca8c233e64b2ebcb910fe334d6ff8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 11:34 [binutils-gdb] Change value_contents_eq return bool sergiodj+buildbot
@ 2017-11-24 13:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 13:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2196>
Commit(s) tested:
98ead37e9735438986934f9f1f35f020a093fe07
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Change value_contents_eq return bool
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/98/98ead37e9735438986934f9f1f35f020a093fe07/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 11:08 [binutils-gdb] Change register_changed_p returns bool sergiodj+buildbot
@ 2017-11-24 12:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 12:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2195>
Commit(s) tested:
62ad7ce71b243df3e8d7d4f8b8560a7316233a9e
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Change register_changed_p returns bool
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/62/62ad7ce71b243df3e8d7d4f8b8560a7316233a9e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 9:50 [binutils-gdb] Change tic6x target descriptions sergiodj+buildbot
@ 2017-11-24 10:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 10:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2194>
Commit(s) tested:
506fe5f4996738f25b7c26f126a84b231429ba95
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Change tic6x target descriptions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/50/506fe5f4996738f25b7c26f126a84b231429ba95/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 8:04 [binutils-gdb] x86: don't omit disambiguating suffixes from "fi*" sergiodj+buildbot
@ 2017-11-24 9:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 9:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2193>
Commit(s) tested:
ac465521a50102d589a6a05a1e722dfa349d3181
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: don't omit disambiguating suffixes from "fi*"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ac/ac465521a50102d589a6a05a1e722dfa349d3181/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-23 16:25 [binutils-gdb] [testsuite] Pass -g3 to clang in gdb.base/macscp.exp sergiodj+buildbot
@ 2017-11-23 23:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-23 23:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2188>
Commit(s) tested:
7c3c1aa885b720e25b25af6ac05f34f9ff0e3dfa
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
[testsuite] Pass -g3 to clang in gdb.base/macscp.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7c/7c3c1aa885b720e25b25af6ac05f34f9ff0e3dfa/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-23 14:16 [binutils-gdb] Delete powerpc64 symbol weakref field sergiodj+buildbot
@ 2017-11-23 18:49 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-23 18:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2185>
Commit(s) tested:
ab2477e15cbe067ff119f1bb5dea05de3cadbdd5
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Delete powerpc64 symbol weakref field
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ab/ab2477e15cbe067ff119f1bb5dea05de3cadbdd5/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/sigstep-threads.exp: step 11
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-23 13:28 [binutils-gdb] Rename u.weakdef and make it a circular list sergiodj+buildbot
@ 2017-11-23 17:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-23 17:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2184>
Commit(s) tested:
60d67dc84bbc7d73672d297d714f8a4a0547618d
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Rename u.weakdef and make it a circular list
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/60/60d67dc84bbc7d73672d297d714f8a4a0547618d/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-23 10:23 [binutils-gdb] x86: correct UDn sergiodj+buildbot
@ 2017-11-23 15:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-23 15:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2182>
Commit(s) tested:
66f1eba0b7e83f293573ab42bbbe5d7d5c905d91
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: correct UDn
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/66/66f1eba0b7e83f293573ab42bbbe5d7d5c905d91/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-23 0:50 [binutils-gdb] Convert DTrace probe interface to C++ (and perform some cleanups) sergiodj+buildbot
@ 2017-11-23 13:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-23 13:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2181>
Commit(s) tested:
9c23b42ffa67b866cd7562c1d8caed70db5d6840
Author(s) (in the same order as the commits):
Sergio Durigan Junior <sergiodj@redhat.com>
Subject:
Convert DTrace probe interface to C++ (and perform some cleanups)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9c/9c23b42ffa67b866cd7562c1d8caed70db5d6840/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 23:51 [binutils-gdb] (Ada) ravenscar-thread.c: remove unwanted trailing \n in call to warning sergiodj+buildbot
@ 2017-11-23 12:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-23 12:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2180>
Commit(s) tested:
8f6cb6c33815f38b41e1e93e59f12869db07c070
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
(Ada) ravenscar-thread.c: remove unwanted trailing \n in call to warning
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8f/8f6cb6c33815f38b41e1e93e59f12869db07c070/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 23:03 [binutils-gdb] C++ify osdata sergiodj+buildbot
@ 2017-11-23 10:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-23 10:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2179>
Commit(s) tested:
479f8de1b3b7e69ca8d557bbe9d843c7d1bc89c5
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
C++ify osdata
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/47/479f8de1b3b7e69ca8d557bbe9d843c7d1bc89c5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 22:42 [binutils-gdb] Show optimized out local variables in "info locals" sergiodj+buildbot
@ 2017-11-23 8:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-23 8:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2178>
Commit(s) tested:
41bd68f52c05f5654bed49f312f6562c8d048897
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Show optimized out local variables in "info locals"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/41/41bd68f52c05f5654bed49f312f6562c8d048897/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
PASS -> KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 22:06 [binutils-gdb] Remove DEF_VEC_P (varobj_p) sergiodj+buildbot
@ 2017-11-23 6:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-23 6:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2177>
Commit(s) tested:
7e2fd2f47b37185505f68e45c5cf016c7a16e1ce
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove DEF_VEC_P (varobj_p)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7e/7e2fd2f47b37185505f68e45c5cf016c7a16e1ce/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 21:44 [binutils-gdb] Replace VEC (varobj_update_result) with std::vector sergiodj+buildbot
@ 2017-11-23 5:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-23 5:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2176>
Commit(s) tested:
0604393c22f626f26b5a4a30e57da40404f5aa5e
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Replace VEC (varobj_update_result) with std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/06/0604393c22f626f26b5a4a30e57da40404f5aa5e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 20:57 [binutils-gdb] Make varobj::children an std::vector sergiodj+buildbot
@ 2017-11-23 4:13 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-23 4:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2175>
Commit(s) tested:
ddf0ea085b626ddcbb14f88f495bcb677b7ab6e9
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make varobj::children an std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/dd/ddf0ea085b626ddcbb14f88f495bcb677b7ab6e9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 21:06 [binutils-gdb] Basic c++ification of varobj sergiodj+buildbot
@ 2017-11-23 2:10 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-23 2:10 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2174>
Commit(s) tested:
9e5b9d2b295d1771647a9e4bc942e398142ccf9b
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Basic c++ification of varobj
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9e/9e5b9d2b295d1771647a9e4bc942e398142ccf9b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 17:26 [binutils-gdb] [testsuite] Pass pthreads in prepare_for_testing sergiodj+buildbot
@ 2017-11-22 23:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 23:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2172>
Commit(s) tested:
1daad298d699383bb4f35aa919a1acfa0ab8e16c
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
[testsuite] Pass pthreads in prepare_for_testing
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1d/1daad298d699383bb4f35aa919a1acfa0ab8e16c/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 17:05 [binutils-gdb] [testsuite] Don't skip gdb.dwarf2/pr10770.exp for non-gcc compiler sergiodj+buildbot
@ 2017-11-22 22:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 22:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2171>
Commit(s) tested:
88465e872cb6649c42863e5c47011bae9e17bbdb
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
[testsuite] Don't skip gdb.dwarf2/pr10770.exp for non-gcc compiler
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/88/88465e872cb6649c42863e5c47011bae9e17bbdb/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 16:44 [binutils-gdb] Remove Vec_Disp8 field for vgf2p8mulb for AVX flavor sergiodj+buildbot
@ 2017-11-22 21:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 21:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2170>
Commit(s) tested:
94b98370de3ee157e039f26865390b5994c47c3b
Author(s) (in the same order as the commits):
Igor Tsimbalist <igor.v.tsimbalist@intel.com>
Subject:
Remove Vec_Disp8 field for vgf2p8mulb for AVX flavor.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/94/94b98370de3ee157e039f26865390b5994c47c3b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 16:02 [binutils-gdb] Remove Vec_Disp8 from vpcompressb and vpexpandb sergiodj+buildbot
@ 2017-11-22 18:49 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 18:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2168>
Commit(s) tested:
c7478d028e8829402b05478f571eb5e1916c63d3
Author(s) (in the same order as the commits):
Igor Tsimbalist <igor.v.tsimbalist@intel.com>
Subject:
Remove Vec_Disp8 from vpcompressb and vpexpandb.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c7/c7478d028e8829402b05478f571eb5e1916c63d3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 13:23 [binutils-gdb] Fix build with GCC 8: strncpy ->strcpy sergiodj+buildbot
@ 2017-11-22 15:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 15:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2165>
Commit(s) tested:
a9f26f609e3a1b6ae3aab300b55442e0a81e2bce
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Fix build with GCC 8: strncpy ->strcpy
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a9/a9f26f609e3a1b6ae3aab300b55442e0a81e2bce/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 2:56 [binutils-gdb] ravenscar: update inferior ptid with event ptid sergiodj+buildbot
@ 2017-11-22 6:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 6:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2161>
Commit(s) tested:
3b1b69bffe522f22d269723856d2caa901041819
Author(s) (in the same order as the commits):
Jerome Guitton <guitton@adacore.com>
Subject:
ravenscar: update inferior ptid with event ptid
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3b/3b1b69bffe522f22d269723856d2caa901041819/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 1:50 [binutils-gdb] (Ada) crash connecting to TSIM simulator sergiodj+buildbot
@ 2017-11-22 5:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 5:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2159>
Commit(s) tested:
54aa6c67f5a0d52dabd428cc40ce02781032acd3
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
(Ada) crash connecting to TSIM simulator
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/54/54aa6c67f5a0d52dabd428cc40ce02781032acd3/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-22 0:26 [binutils-gdb] Add multiple-CPU support in ravenscar-thread.c sergiodj+buildbot
@ 2017-11-22 2:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-22 2:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2157>
Commit(s) tested:
9edcc12f9b714149f84bcf20dbdad91f030e62de
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
Add multiple-CPU support in ravenscar-thread.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9e/9edcc12f9b714149f84bcf20dbdad91f030e62de/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-21 23:01 [binutils-gdb] watchpoint regression debugging with remote protocol (bare metal) sergiodj+buildbot
@ 2017-11-21 23:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-21 23:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2155>
Commit(s) tested:
e02544b292a3d537b43ae9cff890ea040b944d01
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
watchpoint regression debugging with remote protocol (bare metal)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e0/e02544b292a3d537b43ae9cff890ea040b944d01/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-21 18:08 [binutils-gdb] [PowerPC] Detect different long double floating-point formats sergiodj+buildbot
@ 2017-11-21 19:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-21 19:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2154>
Commit(s) tested:
ed0f427344d0befead629d9267aecd01bfb72721
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
[PowerPC] Detect different long double floating-point formats
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ed/ed0f427344d0befead629d9267aecd01bfb72721/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-21 17:30 [binutils-gdb] gdb.ada/minsyms.exp: Don't hardcode the variable's address sergiodj+buildbot
@ 2017-11-21 18:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-21 18:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2153>
Commit(s) tested:
a25d69c6dcbabf3f6629b847246ffb4ddbc29472
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
gdb.ada/minsyms.exp: Don't hardcode the variable's address
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a2/a25d69c6dcbabf3f6629b847246ffb4ddbc29472/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-21 14:17 [binutils-gdb] [ARC] Improve printing of pc-relative instructions sergiodj+buildbot
@ 2017-11-21 15:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-21 15:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2152>
Commit(s) tested:
50d2740d562edc68b2fbcacc0585c3acfc2c302f
Author(s) (in the same order as the commits):
claziss <claziss@synopsys.com>
Subject:
[ARC] Improve printing of pc-relative instructions.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/50/50d2740d562edc68b2fbcacc0585c3acfc2c302f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-21 4:54 [binutils-gdb] Fix build failure in darwin-nat.c sergiodj+buildbot
@ 2017-11-21 7:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-21 7:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2151>
Commit(s) tested:
0fc7642151cc5e62f05ac8ea91fe4d5b44bee11a
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Fix build failure in darwin-nat.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0f/0fc7642151cc5e62f05ac8ea91fe4d5b44bee11a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-21 2:07 [binutils-gdb] Fix mapped_index::find_name_components_bounds upper bound computation sergiodj+buildbot
@ 2017-11-21 5:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-21 5:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2149>
Commit(s) tested:
e6b2f5efa97c7f3de8a3947c6782c40ec6172686
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix mapped_index::find_name_components_bounds upper bound computation
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e6/e6b2f5efa97c7f3de8a3947c6782c40ec6172686/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-20 23:31 [binutils-gdb] Fix gdb.base/whatis-ptype-typedefs.exp on 32-bit archs sergiodj+buildbot
@ 2017-11-21 0:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-21 0:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2145>
Commit(s) tested:
73fcf6418ddce47ead4ffde4fc9fea8e8bd1f4af
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix gdb.base/whatis-ptype-typedefs.exp on 32-bit archs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/73/73fcf6418ddce47ead4ffde4fc9fea8e8bd1f4af/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-20 14:38 [binutils-gdb] PR22451, strip no longer works on older object files sergiodj+buildbot
@ 2017-11-20 21:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-20 21:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2143>
Commit(s) tested:
28e07a0510ca896311014cddf125aedfd7a8cd52
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22451, strip no longer works on older object files
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/28/28e07a0510ca896311014cddf125aedfd7a8cd52/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.reverse/insn-reverse.exp: ext_reg_mov: compare registers on insn 22:vmov r3, r2, d7
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-20 10:03 [binutils-gdb] Remove usage of find_inferior when calling kill_one_lwp_callback sergiodj+buildbot
@ 2017-11-20 20:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-20 20:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2142>
Commit(s) tested:
578290ecafb83e93f0ac695df586b65dac5e8c5d
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove usage of find_inferior when calling kill_one_lwp_callback
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/57/578290ecafb83e93f0ac695df586b65dac5e8c5d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-20 9:29 [binutils-gdb] Remove usages of find_thread when calling need_step_over_p sergiodj+buildbot
@ 2017-11-20 19:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-20 19:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2141>
Commit(s) tested:
eca55aec1d919b69e0d61c91367f8b4d25bc7c43
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove usages of find_thread when calling need_step_over_p
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ec/eca55aec1d919b69e0d61c91367f8b4d25bc7c43/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-20 7:13 [binutils-gdb] Remove usage of find_inferior in linux_stabilize_threads sergiodj+buildbot
@ 2017-11-20 14:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-20 14:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2138>
Commit(s) tested:
fcb056a58dd38cfe7bcd34b7889138bf807c40b8
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove usage of find_inferior in linux_stabilize_threads
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fc/fcb056a58dd38cfe7bcd34b7889138bf807c40b8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-20 8:09 [binutils-gdb] Remove usage of find_inferior in unsuspend_all_lwps sergiodj+buildbot
@ 2017-11-20 13:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-20 13:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2137>
Commit(s) tested:
139720c5b32963ce52c5f691e179920ff84a2237
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove usage of find_inferior in unsuspend_all_lwps
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/13/139720c5b32963ce52c5f691e179920ff84a2237/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-20 5:53 [binutils-gdb] Remove usage of find_inferior in iterate_over_lwps sergiodj+buildbot
@ 2017-11-20 12:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-20 12:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2136>
Commit(s) tested:
6d1e5673fec830f0f1c86632a5d9333e34582bb3
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove usage of find_inferior in iterate_over_lwps
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6d/6d1e5673fec830f0f1c86632a5d9333e34582bb3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-20 5:03 [binutils-gdb] Remove usage of find_inferior in reset_lwp_ptrace_options_callback sergiodj+buildbot
@ 2017-11-20 10:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-20 10:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2135>
Commit(s) tested:
bbf550d50e4c85666877456f014421089503e83b
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove usage of find_inferior in reset_lwp_ptrace_options_callback
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bb/bbf550d50e4c85666877456f014421089503e83b/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/sigstep-threads.exp: continue
new FAIL: gdb.threads/sigstep-threads.exp: step 3
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-20 4:18 [binutils-gdb] Remove usage of find_inferior in win32-low.c sergiodj+buildbot
@ 2017-11-20 5:06 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-20 5:06 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2132>
Commit(s) tested:
2bee2b6ca4cb1a736f963a168dd2ded2831c540d
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove usage of find_inferior in win32-low.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2b/2bee2b6ca4cb1a736f963a168dd2ded2831c540d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-19 1:27 [binutils-gdb] Fix error message typo sergiodj+buildbot
@ 2017-11-19 1:30 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-19 1:30 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2129>
Commit(s) tested:
671275c35e71d3bcdde173d8817e34e89b984241
Author(s) (in the same order as the commits):
Jim Wilson <jimw@sifive.com>
Subject:
Fix error message typo.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/67/671275c35e71d3bcdde173d8817e34e89b984241/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-17 22:40 [binutils-gdb] Make template_symbol derive from symbol sergiodj+buildbot
@ 2017-11-18 4:48 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-18 4:48 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2124>
Commit(s) tested:
68e745e38edebd2a12d60ef7b5774066db3f1c40
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Make template_symbol derive from symbol
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/68/68e745e38edebd2a12d60ef7b5774066db3f1c40/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-17 20:02 [binutils-gdb] Make process_info::syscalls_to_catch an std::vector sergiodj+buildbot
@ 2017-11-17 23:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 23:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2120>
Commit(s) tested:
f27866ba9c348a72a899f5a84dadf1f943c89720
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make process_info::syscalls_to_catch an std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f2/f27866ba9c348a72a899f5a84dadf1f943c89720/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-17 19:16 [binutils-gdb] Make open_fds an std::vector sergiodj+buildbot
@ 2017-11-17 22:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 22:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2119>
Commit(s) tested:
37269bc92ca6a79f9e56fe83718f3c86a1db845d
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Make open_fds an std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/37/37269bc92ca6a79f9e56fe83718f3c86a1db845d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-17 18:07 [binutils-gdb] (Ada) fix handling of minimal symbols (UNOP_CAST and UNOP_ADDR) sergiodj+buildbot
@ 2017-11-17 20:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 20:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2117>
Commit(s) tested:
ced9779b4c45b9bc9c16dd98fa30d7a620e93a55
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
(Ada) fix handling of minimal symbols (UNOP_CAST and UNOP_ADDR)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ce/ced9779b4c45b9bc9c16dd98fa30d7a620e93a55/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-17 12:33 [binutils-gdb] x86: Pass "%F%P:" to linker callback in case of error sergiodj+buildbot
@ 2017-11-17 18:47 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 18:47 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2116>
Commit(s) tested:
2c244f9b0935e577d7c20bb5706e27438e48227f
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Pass "%F%P:" to linker callback in case of error
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2c/2c244f9b0935e577d7c20bb5706e27438e48227f/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-17 2:47 [binutils-gdb] ada-lang.c::ada_value_cast: remove unused parameter noside sergiodj+buildbot
@ 2017-11-17 17:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 17:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2115>
Commit(s) tested:
b7e228508255359e473611fdf7c067b0b79cadbe
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
ada-lang.c::ada_value_cast: remove unused parameter noside
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b7/b7e228508255359e473611fdf7c067b0b79cadbe/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 23:48 [binutils-gdb] Test breakpoint commands w/ "continue" + Ctrl-C sergiodj+buildbot
@ 2017-11-17 16:08 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 16:08 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2114>
Commit(s) tested:
a0922d80dff15d4fbd5d469f56bcd1696846b90a
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Test breakpoint commands w/ "continue" + Ctrl-C
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a0/a0922d80dff15d4fbd5d469f56bcd1696846b90a/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/bp-cmds-continue-ctrl-c.exp: attach: stop with control-c
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 23:37 [binutils-gdb] Don't ever Quit out of resume sergiodj+buildbot
@ 2017-11-17 13:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 13:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2112>
Commit(s) tested:
d930703d68ae160ddfe8ebe5fdcf416fb6090e1e
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Don't ever Quit out of resume
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d9/d930703d68ae160ddfe8ebe5fdcf416fb6090e1e/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw off: single-step breakpoint is not left behind
PASS -> FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw on: step in ro region
PASS -> FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw off: single-step breakpoint is not left behind
PASS -> FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: thread advanced
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 20:25 [binutils-gdb] Fix testing gdb.rust/modules.exp against gdbserver sergiodj+buildbot
@ 2017-11-17 8:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 8:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2108>
Commit(s) tested:
ea04e54ca8b935b01155c3d40381d879dd6ba683
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix testing gdb.rust/modules.exp against gdbserver
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ea/ea04e54ca8b935b01155c3d40381d879dd6ba683/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 19:34 [binutils-gdb] Refactor endian handling in DFP routines sergiodj+buildbot
@ 2017-11-17 5:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 5:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2107>
Commit(s) tested:
d723696126beb185dc1f8f3196be7cb29948148d
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Refactor endian handling in DFP routines
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d7/d723696126beb185dc1f8f3196be7cb29948148d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 18:10 [binutils-gdb] Correct AArch64 crypto dependencies sergiodj+buildbot
@ 2017-11-17 0:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 0:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2103>
Commit(s) tested:
fadfa6b0020b934500356e7aea8934a4565657d3
Author(s) (in the same order as the commits):
Tamar Christina <tamar.christina@arm.com>
Subject:
Correct AArch64 crypto dependencies.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fa/fadfa6b0020b934500356e7aea8934a4565657d3/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 17:52 [binutils-gdb] Add assembler and disassembler support for the new Armv8.4-a instructions for AArch64 sergiodj+buildbot
@ 2017-11-16 23:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 23:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2102>
Commit(s) tested:
e9dbdd80cb02ac66cf7d4cd1207ec11928db2c95
Author(s) (in the same order as the commits):
Tamar Christina <tamar.christina@arm.com>
Subject:
Add assembler and disassembler support for the new Armv8.4-a instructions for AArch64.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e9/e9dbdd80cb02ac66cf7d4cd1207ec11928db2c95/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.reverse/insn-reverse.exp: ext_reg_mov: compare registers on insn 11:ldr r2, [r7, #4]
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 16:44 [binutils-gdb] GDBserver: Fix ignored Ctrl-C after reconnection sergiodj+buildbot
@ 2017-11-16 21:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 21:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2101>
Commit(s) tested:
e849ea896bcdc3da8caff02eb6dc91dc85dd8a7e
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
GDBserver: Fix ignored Ctrl-C after reconnection
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e8/e849ea896bcdc3da8caff02eb6dc91dc85dd8a7e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 16:01 [binutils-gdb] Prevent illegal memory accesses when parsing incorrecctly formated core notes sergiodj+buildbot
@ 2017-11-16 20:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 20:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2100>
Commit(s) tested:
80a0437873045cc08753fcac4af154e2931a99fd
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Prevent illegal memory accesses when parsing incorrecctly formated core notes.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/80/80a0437873045cc08753fcac4af154e2931a99fd/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 15:04 [binutils-gdb] Add Python rbreak command sergiodj+buildbot
@ 2017-11-16 19:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 19:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2099>
Commit(s) tested:
d8ae99a7b08e29e31446aee1e47e59943d7d9926
Author(s) (in the same order as the commits):
Phil Muldoon <pmuldoon@redhat.com>
Subject:
Add Python rbreak command.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d8/d8ae99a7b08e29e31446aee1e47e59943d7d9926/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 15:02 [binutils-gdb] Prevent a possible seg-fault in the section merging code, by always creating a padding buffer sergiodj+buildbot
@ 2017-11-16 17:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 17:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2098>
Commit(s) tested:
38b28f7088057d70497de7312cd983ec8e408a76
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Prevent a possible seg-fault in the section merging code, by always creating a padding buffer.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/38/38b28f7088057d70497de7312cd983ec8e408a76/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 13:23 [binutils-gdb] Fix gdb.base/starti.exp racy test sergiodj+buildbot
@ 2017-11-16 15:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 15:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2096>
Commit(s) tested:
968a13f8362072b5f7eae8584d490b53d7f97ca5
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix gdb.base/starti.exp racy test
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/96/968a13f8362072b5f7eae8584d490b53d7f97ca5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 11:40 [binutils-gdb] Remove non-linux tic6x target descriptions sergiodj+buildbot
@ 2017-11-16 13:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 13:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2095>
Commit(s) tested:
c632b6456b1f220475fbf61f19ada28230449ff6
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Remove non-linux tic6x target descriptions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c6/c632b6456b1f220475fbf61f19ada28230449ff6/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-16 10:28 [binutils-gdb] Fix tic6x-uclinux GDBserver build failure sergiodj+buildbot
@ 2017-11-16 10:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 10:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2093>
Commit(s) tested:
3491a34c4f7de10dbd19c719052642d8471c45a6
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Fix tic6x-uclinux GDBserver build failure
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/34/3491a34c4f7de10dbd19c719052642d8471c45a6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-15 21:02 [binutils-gdb] Include <array> to declare std::array<> sergiodj+buildbot
@ 2017-11-16 2:08 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 2:08 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2092>
Commit(s) tested:
a014b87a9ac665d2b92cfc66384d1af3ddd345dd
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Include <array> to declare std::array<>.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a0/a014b87a9ac665d2b92cfc66384d1af3ddd345dd/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-15 17:36 [binutils-gdb] Separate the new FP16 instructions backported from Armv8.4-a to Armv8.2-a into a new flag order to distinguish them from the rest of the already existing optional FP16 instructions in Armv8.2-a sergiodj+buildbot
@ 2017-11-15 21:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-15 21:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2088>
Commit(s) tested:
01f48020363f1ca9b31df2ee0b2afedc38db1259
Author(s) (in the same order as the commits):
Tamar Christina <tamar.christina@arm.com>
Subject:
Separate the new FP16 instructions backported from Armv8.4-a to Armv8.2-a into a new flag order to distinguish them from the rest of the already existing optional FP16 instructions in Armv8.2-a.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/01/01f48020363f1ca9b31df2ee0b2afedc38db1259/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-15 16:19 [binutils-gdb] Remove no-longer applicable maintainer entries sergiodj+buildbot
@ 2017-11-15 19:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-15 19:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2087>
Commit(s) tested:
c0c11fa91dbbf91b9c9d04384fe9f3ef5a6e7145
Author(s) (in the same order as the commits):
Andrew Cagney <cagney@gnu.org>
Subject:
Remove no-longer applicable maintainer entries
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c0/c0c11fa91dbbf91b9c9d04384fe9f3ef5a6e7145/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-15 15:43 [binutils-gdb] Move self to Past Maintainers sergiodj+buildbot
@ 2017-11-15 18:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-15 18:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2086>
Commit(s) tested:
34a7ebaff9e522913afba4e9cac9d8d5064e5480
Author(s) (in the same order as the commits):
Andrew Cagney <cagney@gnu.org>
Subject:
Move self to Past Maintainers.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/34/34a7ebaff9e522913afba4e9cac9d8d5064e5480/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-15 12:22 [binutils-gdb] Handle ' and I format flags sergiodj+buildbot
@ 2017-11-15 15:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-15 15:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2084>
Commit(s) tested:
a5065160868895e91cac8515263d9783f8120818
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Handle ' and I format flags
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a5/a5065160868895e91cac8515263d9783f8120818/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-14 22:03 [binutils-gdb] Fix mem region parsing regression and add test sergiodj+buildbot
@ 2017-11-14 22:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-14 22:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2077>
Commit(s) tested:
074319087452e3a8b1a0e84279a82555dd798d69
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Fix mem region parsing regression and add test
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/07/074319087452e3a8b1a0e84279a82555dd798d69/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.gdb/unittest.exp: maintenance selftest
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-14 10:49 [binutils-gdb] PR22431, powerpc64 ld segfault when .plt discarded sergiodj+buildbot
@ 2017-11-14 12:30 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-14 12:30 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2076>
Commit(s) tested:
06bcf5416feae129e239476ab1408e038bba171d
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22431, powerpc64 ld segfault when .plt discarded
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/06/06bcf5416feae129e239476ab1408e038bba171d/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-14 9:06 [binutils-gdb] x86: add support for AVX-512 VPCMP*{B,W} pseudo-ops sergiodj+buildbot
@ 2017-11-14 9:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-14 9:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2074>
Commit(s) tested:
2645e1d0798da9487def06d14bb744c33dba702d
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: add support for AVX-512 VPCMP*{B,W} pseudo-ops
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/26/2645e1d0798da9487def06d14bb744c33dba702d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-14 5:41 [binutils-gdb] Inconsistent .eh_frame_hdr on powerpc64 sergiodj+buildbot
@ 2017-11-14 5:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-14 5:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2072>
Commit(s) tested:
2d0d44d514d9a2e2b0f7ae8129d52b02160c9897
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Inconsistent .eh_frame_hdr on powerpc64
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2d/2d0d44d514d9a2e2b0f7ae8129d52b02160c9897/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-13 12:03 [binutils-gdb] PE: don't corrupt section flags when linking from ELF objects sergiodj+buildbot
@ 2017-11-13 13:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-13 13:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2068>
Commit(s) tested:
5be87c8fa74c9ae6684bea571b4157ad1966d008
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
PE: don't corrupt section flags when linking from ELF objects
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5b/5be87c8fa74c9ae6684bea571b4157ad1966d008/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-13 11:44 [binutils-gdb] x86: {f, }xsave64 / {f, }xrstor64 / xsaveopt64 should not allow q suffix sergiodj+buildbot
@ 2017-11-13 11:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-13 11:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2067>
Commit(s) tested:
897e603cb98c50968ea21d1b3baac5bc020ccc06
Author(s) (in the same order as the commits):
Jan Beulich <jbeulich@novell.com>
Subject:
x86: {f,}xsave64 / {f,}xrstor64 / xsaveopt64 should not allow q suffix
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/89/897e603cb98c50968ea21d1b3baac5bc020ccc06/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.gdb/unittest.exp: maintenance selftest
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-12 10:49 [binutils-gdb] weakdef list handling sergiodj+buildbot
@ 2017-11-12 13:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-12 13:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2065>
Commit(s) tested:
e3e53eed9c2f1ab82ae4a7683f474b4f6eb162c7
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
weakdef list handling
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e3/e3e53eed9c2f1ab82ae4a7683f474b4f6eb162c7/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-12 10:14 [binutils-gdb] non_got_ref after adjust_dynamic_relocs sergiodj+buildbot
@ 2017-11-12 11:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-12 11:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2064>
Commit(s) tested:
529fe20eeb0030ea5d653d0ebec433f9e3145874
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
non_got_ref after adjust_dynamic_relocs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/52/529fe20eeb0030ea5d653d0ebec433f9e3145874/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-10 1:39 [binutils-gdb] Fix racy output matching in gdb.tui/tui-completion.exp sergiodj+buildbot
@ 2017-11-10 9:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-10 9:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2062>
Commit(s) tested:
584a564f366de16d1cecd1910ab0be8ca6167415
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix racy output matching in gdb.tui/tui-completion.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/58/584a564f366de16d1cecd1910ab0be8ca6167415/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-10 0:28 [binutils-gdb] Fix racy output matching in gdb.base/memattr.exp sergiodj+buildbot
@ 2017-11-10 5:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-10 5:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2059>
Commit(s) tested:
2c88253fc469fbf40be7f0d1f7060b81055f2eb1
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix racy output matching in gdb.base/memattr.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2c/2c88253fc469fbf40be7f0d1f7060b81055f2eb1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-09 23:46 [binutils-gdb] Fix racy output matching in gdb.base/completion.exp sergiodj+buildbot
@ 2017-11-10 4:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-10 4:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2058>
Commit(s) tested:
c7a3851716f98540396b9e02be7d2fcd3bff2d29
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix racy output matching in gdb.base/completion.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c7/c7a3851716f98540396b9e02be7d2fcd3bff2d29/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-09 20:24 [binutils-gdb] fix typos in ada-lang.c comment sergiodj+buildbot
@ 2017-11-10 1:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-10 1:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2056>
Commit(s) tested:
31432a672fd40058a714eb2791ea1c3168ccc4f1
Author(s) (in the same order as the commits):
Joel Brobecker <brobecker@adacore.com>
Subject:
fix typos in ada-lang.c comment
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/31/31432a672fd40058a714eb2791ea1c3168ccc4f1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-09 20:04 [binutils-gdb] Enable the Dot Product extension by default for Armv8.4-a sergiodj+buildbot
@ 2017-11-10 0:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-10 0:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2055>
Commit(s) tested:
981b557a488f7c3179dee1e34515ca9b10cf885c
Author(s) (in the same order as the commits):
Tamar Christina <tamar.christina@arm.com>
Subject:
Enable the Dot Product extension by default for Armv8.4-a.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/98/981b557a488f7c3179dee1e34515ca9b10cf885c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-09 17:55 [binutils-gdb] Add the operand encoding types for the new Armv8.2-a back-ported instructions. These are to be used later when the new instructions are added sergiodj+buildbot
@ 2017-11-09 21:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-09 21:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2053>
Commit(s) tested:
1a7ed57c840dcb0401f1a67c6763a89f7d2686d2
Author(s) (in the same order as the commits):
Tamar Christina <tamar.christina@arm.com>
Subject:
Add the operand encoding types for the new Armv8.2-a back-ported instructions. These are to be used later when the new instructions are added.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1a/1a7ed57c840dcb0401f1a67c6763a89f7d2686d2/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.threads/sigstep-threads.exp: continue
new FAIL: gdb.threads/sigstep-threads.exp: step 25
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-09 17:04 [binutils-gdb] Adds the new Fields and Operand types for the new instructions in Armv8.4-a sergiodj+buildbot
@ 2017-11-09 19:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-09 19:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2052>
Commit(s) tested:
f42f1a1d6ca0cc84e43d7f2b85044a2565ca00f2
Author(s) (in the same order as the commits):
Tamar Christina <tamar.christina@arm.com>
Subject:
Adds the new Fields and Operand types for the new instructions in Armv8.4-a.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f4/f42f1a1d6ca0cc84e43d7f2b85044a2565ca00f2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-09 11:44 [binutils-gdb] Split the ARM Crypto ISA extensions for AES and SHA1+2 into their own options (+aes and +sha2). The reason for the split is because with the introduction of Armv8.4-a the implementation of AES has explicitly been made independent of the implementation of the other crypto extensions sergiodj+buildbot
@ 2017-11-09 12:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-09 12:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2049>
Commit(s) tested:
b6b9ca0c3ec9589d0dd40b2b86ba748a361b48eb
Author(s) (in the same order as the commits):
Tamar Christina <tamar.christina@arm.com>
Subject:
Split the ARM Crypto ISA extensions for AES and SHA1+2 into their own options (+aes and +sha2). The reason for the split is because with the introduction of Armv8.4-a the implementation of AES has explicitly been made independent of the implementation of the other crypto extensions.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b6/b6b9ca0c3ec9589d0dd40b2b86ba748a361b48eb/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-08 1:18 [binutils-gdb] Constify add_setshow_* sergiodj+buildbot
@ 2017-11-08 15:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-08 15:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2028>
Commit(s) tested:
eb4c3f4aaae2ee1b27c210e951260a7e699133b4
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify add_setshow_*
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/eb/eb4c3f4aaae2ee1b27c210e951260a7e699133b4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-08 0:57 [binutils-gdb] Remove cmd_cfunc_ftype sergiodj+buildbot
@ 2017-11-08 14:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-08 14:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2027>
Commit(s) tested:
5fed81ff351121887a93b5b57caebb86667cbbd2
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cmd_cfunc_ftype
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5f/5fed81ff351121887a93b5b57caebb86667cbbd2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 23:28 [binutils-gdb] Constify add_path and friends sergiodj+buildbot
@ 2017-11-08 8:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-08 8:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2022>
Commit(s) tested:
5614fb77203f5ea01edfb2d739e9d4f3d570dc09
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify add_path and friends
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/56/5614fb77203f5ea01edfb2d739e9d4f3d570dc09/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 22:18 [binutils-gdb] Make set_cmd_cfunc private sergiodj+buildbot
@ 2017-11-08 6:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-08 6:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2020>
Commit(s) tested:
c2252c0dd8dcf3bb95598149aecd3158e89c31d7
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Make set_cmd_cfunc private
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c2/c2252c0dd8dcf3bb95598149aecd3158e89c31d7/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 21:27 [binutils-gdb] Constify add_abbrev_prefix_cmd sergiodj+buildbot
@ 2017-11-08 4:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-08 4:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2018>
Commit(s) tested:
ee7ddd713206fdf02512a9fb3fe928a210200c11
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify add_abbrev_prefix_cmd
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ee/ee7ddd713206fdf02512a9fb3fe928a210200c11/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: wrong thread not unwound
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 20:49 [binutils-gdb] opcodes/arc: Fix incorrect insn_class for some nps insns sergiodj+buildbot
@ 2017-11-08 2:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-08 2:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2017>
Commit(s) tested:
52eab766df54915f8d3d71475235868285c4ca82
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
opcodes/arc: Fix incorrect insn_class for some nps insns
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/52/52eab766df54915f8d3d71475235868285c4ca82/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 17:23 [binutils-gdb] RISC-V: Add satp as an alias for sptbr sergiodj+buildbot
@ 2017-11-08 1:06 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-08 1:06 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2016>
Commit(s) tested:
1270b047fdc68d89f05668ed919d17f5fceeba2a
Author(s) (in the same order as the commits):
Palmer Dabbelt <palmer@dabbelt.com>
Subject:
RISC-V: Add satp as an alias for sptbr
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/12/1270b047fdc68d89f05668ed919d17f5fceeba2a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 14:20 [binutils-gdb] Add some more breakpoint/location range tests sergiodj+buildbot
@ 2017-11-07 23:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-07 23:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2015>
Commit(s) tested:
a02b41a7e604471e584dc2151fbd36714842710e
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add some more breakpoint/location range tests
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a0/a02b41a7e604471e584dc2151fbd36714842710e/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 13:35 [binutils-gdb] Make breakpoint/location number parsing error output consistent sergiodj+buildbot
@ 2017-11-07 22:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-07 22:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2014>
Commit(s) tested:
95e95a6de2e4a050870c49bf52fbac0239847b63
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Make breakpoint/location number parsing error output consistent
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/95/95e95a6de2e4a050870c49bf52fbac0239847b63/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 12:09 [binutils-gdb] Breakpoint location parsing: always error instead of warning sergiodj+buildbot
@ 2017-11-07 20:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-07 20:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2012>
Commit(s) tested:
cc638e867c240546b4dbc791761099d3ca5fe4a9
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Breakpoint location parsing: always error instead of warning
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cc/cc638e867c240546b4dbc791761099d3ca5fe4a9/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 11:32 [binutils-gdb] Allow enabling/disabling breakpoint location ranges sergiodj+buildbot
@ 2017-11-07 18:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-07 18:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2011>
Commit(s) tested:
d0fe47010fc3289e081ba547a0bfcc6d07906cd2
Author(s) (in the same order as the commits):
Xavier Roirand <roirand@adacore.com>
Subject:
Allow enabling/disabling breakpoint location ranges
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d0/d0fe47010fc3289e081ba547a0bfcc6d07906cd2/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 10:42 [binutils-gdb] This patch similarly to the AArch64 one enables Dot Product support by default for the Cortex-A55 and Cortex-A75 which have hardware support for these instructions sergiodj+buildbot
@ 2017-11-07 17:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-07 17:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2010>
Commit(s) tested:
0198d5e6fc331d50dc19b7f250ac4bc510a8dbb5
Author(s) (in the same order as the commits):
Tamar Christina <tamar.christina@arm.com>
Subject:
This patch similarly to the AArch64 one enables Dot Product support by default for the Cortex-A55 and Cortex-A75 which have hardware support for these instructions.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/01/0198d5e6fc331d50dc19b7f250ac4bc510a8dbb5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 8:51 [binutils-gdb] ngettext support sergiodj+buildbot
@ 2017-11-07 13:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-07 13:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2007>
Commit(s) tested:
6003e27e764ff62c1269a3ac6b5806b3fa3a1740
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
ngettext support
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/60/6003e27e764ff62c1269a3ac6b5806b3fa3a1740/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 2:03 [binutils-gdb] Update my e-mail address sergiodj+buildbot
@ 2017-11-07 12:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-07 12:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2006>
Commit(s) tested:
635dc5b2e5cda5b18d32c4b0f6c19cba3ef05c67
Author(s) (in the same order as the commits):
Luis Machado <luis.machado@linaro.org>
Subject:
Update my e-mail address.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/63/635dc5b2e5cda5b18d32c4b0f6c19cba3ef05c67/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 1:31 [binutils-gdb] Simplify child_terminal_inferior sergiodj+buildbot
@ 2017-11-07 10:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-07 10:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2005>
Commit(s) tested:
556e5da51349d00307bc05b7a6a813f71ac58664
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Simplify child_terminal_inferior
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/55/556e5da51349d00307bc05b7a6a813f71ac58664/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-07 1:06 [binutils-gdb] Test attaching to a process that isn't a process group leader sergiodj+buildbot
@ 2017-11-07 8:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-07 8:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2004>
Commit(s) tested:
46f67f80ddfeea11d4a8134b347c74581faff8f6
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Test attaching to a process that isn't a process group leader
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/46/46f67f80ddfeea11d4a8134b347c74581faff8f6/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/attach-non-pgrp-leader.exp: parent: continue to breakpoint: marker
new FAIL: gdb.base/attach-non-pgrp-leader.exp: parent: detach
new FAIL: gdb.base/attach-non-pgrp-leader.exp: child: continue to breakpoint: marker
new FAIL: gdb.base/attach-non-pgrp-leader.exp: child: detach
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-06 22:47 [binutils-gdb] Don't set terminal flags twice in a row sergiodj+buildbot
@ 2017-11-07 5:13 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-07 5:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2001>
Commit(s) tested:
a94799ac1e430404fda5cbc181406cf5f3630108
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Don't set terminal flags twice in a row
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a9/a94799ac1e430404fda5cbc181406cf5f3630108/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-06 21:12 [binutils-gdb] Target FP: Merge doublest.c and dfp.c into target-float.c sergiodj+buildbot
@ 2017-11-07 1:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-07 1:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1999>
Commit(s) tested:
1cfb73dbb7503d1cfb088c14d1125a5030a1f386
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Merge doublest.c and dfp.c into target-float.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1c/1cfb73dbb7503d1cfb088c14d1125a5030a1f386/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-06 17:27 [binutils-gdb] Target FP: Add binop and compare routines to target-float.{c, h} sergiodj+buildbot
@ 2017-11-06 19:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 19:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1994>
Commit(s) tested:
66c02b9ed1eabf1d7981c0c27ec9fd3c17fc5d35
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Add binop and compare routines to target-float.{c,h}
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/66/66c02b9ed1eabf1d7981c0c27ec9fd3c17fc5d35/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-06 15:56 [binutils-gdb] Target FP: Add string routines to target-float.{c,h} sergiodj+buildbot
@ 2017-11-06 16:47 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 16:47 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1992>
Commit(s) tested:
f69fdf9bca80ac703890a51e124e408cbccbb743
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Add string routines to target-float.{c,h}
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f6/f69fdf9bca80ac703890a51e124e408cbccbb743/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-05 12:25 [binutils-gdb] Proper bound check in _bfd_doprnt_scan sergiodj+buildbot
@ 2017-11-05 20:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-05 20:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1990>
Commit(s) tested:
26a9301057457ae576b51b8127bb805b4e484a6b
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Proper bound check in _bfd_doprnt_scan
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/26/26a9301057457ae576b51b8127bb805b4e484a6b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-05 10:38 [binutils-gdb] PR22397, BFD internal error when message locale isn't C sergiodj+buildbot
@ 2017-11-05 19:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-05 19: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/1989>
Commit(s) tested:
7167fe4c70ea74f1bb74a6130bb7e6bf5ca354ee
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22397, BFD internal error when message locale isn't C
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/71/7167fe4c70ea74f1bb74a6130bb7e6bf5ca354ee/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-05 7:46 [binutils-gdb] powerpc TLS in PIEs sergiodj+buildbot
@ 2017-11-05 15:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-05 15:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1987>
Commit(s) tested:
f15d0b545b9e9dada8d1398163693f67792e9e79
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
powerpc TLS in PIEs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f1/f15d0b545b9e9dada8d1398163693f67792e9e79/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-05 2:35 [binutils-gdb] PowerPC readonly_dynrelocs sergiodj+buildbot
@ 2017-11-05 13:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-05 13:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1986>
Commit(s) tested:
98bbb1b86180324b278842d8d73c79cb5d76d349
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PowerPC readonly_dynrelocs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/98/98bbb1b86180324b278842d8d73c79cb5d76d349/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-05 6:19 [binutils-gdb] hppa-linux TLS relocs sergiodj+buildbot
@ 2017-11-05 12:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-05 12:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1985>
Commit(s) tested:
2e684e75ae3939f5f14fb89ca8a300b610d093dd
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
hppa-linux TLS relocs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2e/2e684e75ae3939f5f14fb89ca8a300b610d093dd/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-04 23:46 [binutils-gdb] Use unique_xmalloc_ptr in c_type_print_base sergiodj+buildbot
@ 2017-11-05 6:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-05 6:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1981>
Commit(s) tested:
331b71e5ee226cb5455969899274f0e43e83aa1e
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use unique_xmalloc_ptr in c_type_print_base
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/33/331b71e5ee226cb5455969899274f0e43e83aa1e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-05 1:19 [binutils-gdb] Use gdb::byte_vector in ppc-linux-tdep.c sergiodj+buildbot
@ 2017-11-05 3:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-05 3:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1979>
Commit(s) tested:
779bc38eca950c7f3b64173e99e25f0c0edfbe3b
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use gdb::byte_vector in ppc-linux-tdep.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/77/779bc38eca950c7f3b64173e99e25f0c0edfbe3b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-04 20:14 [binutils-gdb] Replace start_rbreak_breakpoints and end_rbreak_breakpoints sergiodj+buildbot
@ 2017-11-04 23:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-04 23:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1976>
Commit(s) tested:
c80049d3b615691dc902762d5d97551aa9664442
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Replace start_rbreak_breakpoints and end_rbreak_breakpoints
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c8/c80049d3b615691dc902762d5d97551aa9664442/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-04 19:51 [binutils-gdb] Remove directive-searched cleanups sergiodj+buildbot
@ 2017-11-04 22:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-04 22:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1975>
Commit(s) tested:
167b0be1b5ef36a5605fcdfba0c84db2ed475e1e
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove directive-searched cleanups
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/16/167b0be1b5ef36a5605fcdfba0c84db2ed475e1e/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-thread_db.exp: continue to end
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-04 18:59 [binutils-gdb] Use unique_xmalloc_ptr in find_separate_debug_file_by_debuglink sergiodj+buildbot
@ 2017-11-04 21:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-04 21:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1974>
Commit(s) tested:
5eae7aeaf754549d3645a0c590c5ef9f0134a32d
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use unique_xmalloc_ptr in find_separate_debug_file_by_debuglink
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5e/5eae7aeaf754549d3645a0c590c5ef9f0134a32d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-04 17:45 [binutils-gdb] Remove cleanups from link_callbacks_einfo sergiodj+buildbot
@ 2017-11-04 18:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-04 18:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1972>
Commit(s) tested:
20dcd8cae7d87910f6c3936bad72e78b647a8de6
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanups from link_callbacks_einfo
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/20/20dcd8cae7d87910f6c3936bad72e78b647a8de6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-04 17:00 [binutils-gdb] Replace really_free_pendings with a scoped_ class sergiodj+buildbot
@ 2017-11-04 17:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-04 17:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1971>
Commit(s) tested:
33c7c59df060e9952fc2f608c3a6ff0a23ecd40d
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Replace really_free_pendings with a scoped_ class
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/33/33c7c59df060e9952fc2f608c3a6ff0a23ecd40d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-03 15:41 [binutils-gdb] Fix regression on ARM after Target FP patches sergiodj+buildbot
@ 2017-11-03 17:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-03 17:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1969>
Commit(s) tested:
67fa57cfa536cefb5ae7cc4635db66d03fdbd8bb
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Fix regression on ARM after Target FP patches
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/67/67fa57cfa536cefb5ae7cc4635db66d03fdbd8bb/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-03 15:03 [binutils-gdb] [ARC] Force the disassam to use the hexadecimal number for printing sergiodj+buildbot
@ 2017-11-03 16:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-03 16:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1968>
Commit(s) tested:
fdddd2900f39584e7d6cee27127593fba2cb0cf2
Author(s) (in the same order as the commits):
claziss <claziss@synopsys.com>
Subject:
[ARC] Force the disassam to use the hexadecimal number for printing
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fd/fdddd2900f39584e7d6cee27127593fba2cb0cf2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-03 14:08 [binutils-gdb] [ARC] Sync opcode data base sergiodj+buildbot
@ 2017-11-03 14:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-03 14:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1967>
Commit(s) tested:
3334eba7f4aeaa06926d5f1fb51446c5cea43e42
Author(s) (in the same order as the commits):
claziss <claziss@synopsys.com>
Subject:
[ARC] Sync opcode data base.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/33/3334eba7f4aeaa06926d5f1fb51446c5cea43e42/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-03 12:17 [binutils-gdb] Fix excessive memory allocation attempts and possible integer overfloaws when attempting to read a COFF binary with a corrupt symbol count sergiodj+buildbot
@ 2017-11-03 12:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-03 12:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1965>
Commit(s) tested:
6cee897971d4d7cd37d2a686bb6d2aa3e759c8ca
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Fix excessive memory allocation attempts and possible integer overfloaws when attempting to read a COFF binary with a corrupt symbol count.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6c/6cee897971d4d7cd37d2a686bb6d2aa3e759c8ca/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-02 20:52 [binutils-gdb] aarch64: Remove AARCH64_FEATURE_F16 from AARCH64_ARCH_V8_2 sergiodj+buildbot
@ 2017-11-03 1:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-03 1:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1963>
Commit(s) tested:
c05e0c5af35ebbb1ca39bb1efffae2adecdfa253
Author(s) (in the same order as the commits):
Siddhesh Poyarekar <siddhesh@sourceware.org>
Subject:
aarch64: Remove AARCH64_FEATURE_F16 from AARCH64_ARCH_V8_2
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c0/c05e0c5af35ebbb1ca39bb1efffae2adecdfa253/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-02 19:53 [binutils-gdb] Construct readonly regcache without address space sergiodj+buildbot
@ 2017-11-03 0:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-03 0:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1962>
Commit(s) tested:
f26ae15b471aaddee81d9d6c03af1cb0f2081735
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Construct readonly regcache without address space
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f2/f26ae15b471aaddee81d9d6c03af1cb0f2081735/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-02 19:26 [binutils-gdb] const-fy regcache::m_readonly_p sergiodj+buildbot
@ 2017-11-02 23:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-02 23:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1961>
Commit(s) tested:
6c6e9412e930c96f48b8ee78a389437328f5283c
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
const-fy regcache::m_readonly_p
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6c/6c6e9412e930c96f48b8ee78a389437328f5283c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-02 18:14 [binutils-gdb] const-fy regcache::m_aspace sergiodj+buildbot
@ 2017-11-02 21:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-02 21:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1960>
Commit(s) tested:
8b86c9592117b3ba52921af11868dc0b81ce4858
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
const-fy regcache::m_aspace
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8b/8b86c9592117b3ba52921af11868dc0b81ce4858/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-02 19:07 [binutils-gdb] s/get_regcache_aspace (regcache)/regcache->aspace ()/g sergiodj+buildbot
@ 2017-11-02 20:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-02 20:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1959>
Commit(s) tested:
a01bda5221f75031ea2b6d05860e46c7b9b58b55
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
s/get_regcache_aspace (regcache)/regcache->aspace ()/g
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a0/a01bda5221f75031ea2b6d05860e46c7b9b58b55/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-02 17:06 [binutils-gdb] Remove regcache_descr::nr_raw_registers sergiodj+buildbot
@ 2017-11-02 19:24 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-02 19:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1958>
Commit(s) tested:
d999647bc427ce2e083c4449b683705449d0bb58
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Remove regcache_descr::nr_raw_registers
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d9/d999647bc427ce2e083c4449b683705449d0bb58/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-02 16:13 [binutils-gdb] New method regcache::assert_regnum sergiodj+buildbot
@ 2017-11-02 18:10 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-02 18:10 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1957>
Commit(s) tested:
4e888c281cd19f019248bd165d7055af88641c80
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
New method regcache::assert_regnum
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4e/4e888c281cd19f019248bd165d7055af88641c80/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-02 15:52 [binutils-gdb] Remove code wrapped by "#if 0" sergiodj+buildbot
@ 2017-11-02 16:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-02 16:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1956>
Commit(s) tested:
2e1b49b32ab9aec1aca94f424cbe275e5f6f9ab4
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Remove code wrapped by "#if 0"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2e/2e1b49b32ab9aec1aca94f424cbe275e5f6f9ab4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-02 15:27 [binutils-gdb] Remove regcache_descr fields sizeof_raw_register_status and sizeof_cooked_register_status sergiodj+buildbot
@ 2017-11-02 15:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-02 15:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1955>
Commit(s) tested:
6c5218dfdb7b38cc1617be7753cc1ec6d0612382
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Remove regcache_descr fields sizeof_raw_register_status and sizeof_cooked_register_status
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6c/6c5218dfdb7b38cc1617be7753cc1ec6d0612382/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/sigstep-threads.exp: continue
new FAIL: gdb.threads/sigstep-threads.exp: step 21
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-01 15:24 [binutils-gdb] Prevent illegal memory accesses when attempting to read excessively large COFF line number tables sergiodj+buildbot
@ 2017-11-01 15:48 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-01 15:48 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1952>
Commit(s) tested:
a67d66eb97e7613a38ffe6622d837303b3ecd31d
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Prevent illegal memory accesses when attempting to read excessively large COFF line number tables.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a6/a67d66eb97e7613a38ffe6622d837303b3ecd31d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-01 11:58 [binutils-gdb] Fix an invalid free called when attempting to link a COFF object against an ELF archive with --no-keep-memory enabled sergiodj+buildbot
@ 2017-11-01 12:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-11-01 12:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1950>
Commit(s) tested:
ee357486aa87b17782111295c5e7bd4ac9e6970f
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Fix an invalid free called when attempting to link a COFF object against an ELF archive with --no-keep-memory enabled.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ee/ee357486aa87b17782111295c5e7bd4ac9e6970f/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-31 14:53 [binutils-gdb] Fix illegal memory access triggered when parsing a PE binary with a corrupt data dictionary sergiodj+buildbot
@ 2017-10-31 14:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-31 14:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1945>
Commit(s) tested:
0bb6961f18b8e832d88b490d421ca56cea16c45b
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Fix illegal memory access triggered when parsing a PE binary with a corrupt data dictionary.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0b/0bb6961f18b8e832d88b490d421ca56cea16c45b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-30 2:25 [binutils-gdb] frv-elf --gc-sections failures sergiodj+buildbot
@ 2017-10-30 4:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-30 4:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1938>
Commit(s) tested:
7f9cb5d275e71a75e97230241ec7da6718a7a0f5
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
frv-elf --gc-sections failures
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7f/7f9cb5d275e71a75e97230241ec7da6718a7a0f5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-30 2:05 [binutils-gdb] relocs_compatible test for gc-sections sergiodj+buildbot
@ 2017-10-30 2:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-30 2:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1937>
Commit(s) tested:
81742b83e9f25895eaaf3a07ac1651a4e9a68251
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
relocs_compatible test for gc-sections
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/81/81742b83e9f25895eaaf3a07ac1651a4e9a68251/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-28 12:08 [binutils-gdb] PR22300, Abort in elf32_hppa_relocate_section building polyml sergiodj+buildbot
@ 2017-10-28 22:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-28 22:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1931>
Commit(s) tested:
c0e331c794d6bd75d9be9bea6145513074c33f39
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22300, Abort in elf32_hppa_relocate_section building polyml
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c0/c0e331c794d6bd75d9be9bea6145513074c33f39/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-28 6:15 [binutils-gdb] Remove usages of find_inferior in handle_status sergiodj+buildbot
@ 2017-10-28 18:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-28 18:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1928>
Commit(s) tested:
99078d344db25efc376877e0e4c95157f0c36c60
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove usages of find_inferior in handle_status
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/99/99078d344db25efc376877e0e4c95157f0c36c60/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-28 8:07 [binutils-gdb] C++ify xml-syscall.c sergiodj+buildbot
@ 2017-10-28 14:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-28 14:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1926>
Commit(s) tested:
5a9dcda14c240eccee5c1de53cf4ae936230ed0c
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
C++ify xml-syscall.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5a/5a9dcda14c240eccee5c1de53cf4ae936230ed0c/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-28 5:13 [binutils-gdb] Get rid of VEC(probe_p) sergiodj+buildbot
@ 2017-10-28 13:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-28 13:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1925>
Commit(s) tested:
45461e0dcaf4193b5b4478031f515ffb7911ad85
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Get rid of VEC(probe_p)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/45/45461e0dcaf4193b5b4478031f515ffb7911ad85/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-28 3:31 [binutils-gdb] Get rid of VEC(filename_language) sergiodj+buildbot
@ 2017-10-28 8:48 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-28 8:48 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1922>
Commit(s) tested:
593e3209f3e4e525030bc8768850f3876fd0b850
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Get rid of VEC(filename_language)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/59/593e3209f3e4e525030bc8768850f3876fd0b850/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-27 17:04 [binutils-gdb] [AArch64] Mark LR clobbered by BL in inline asm sergiodj+buildbot
@ 2017-10-28 4:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-28 4:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1919>
Commit(s) tested:
bb11dd58391459bd5ba54ec405adab663ac59e89
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
[AArch64] Mark LR clobbered by BL in inline asm
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bb/bb11dd58391459bd5ba54ec405adab663ac59e89/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 22:19 [binutils-gdb] Garbage collect remote.c:remote_async_terminal_ours_p sergiodj+buildbot
@ 2017-10-28 0:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-28 0:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1916>
Commit(s) tested:
23cc4e1b28d445e23827a09c454aa806f2b8c720
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Garbage collect remote.c:remote_async_terminal_ours_p
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/23/23cc4e1b28d445e23827a09c454aa806f2b8c720/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 21:14 [binutils-gdb] const-fy breakpoint_ops->breakpoint_hit parameter aspace sergiodj+buildbot
@ 2017-10-27 21:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-27 21:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1914>
Commit(s) tested:
bd5225139c83a80aad542e46efb66fabf51bff91
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
const-fy breakpoint_ops->breakpoint_hit parameter aspace
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bd/bd5225139c83a80aad542e46efb66fabf51bff91/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 20:23 [binutils-gdb] s/get_regcache_arch (regcache)/regcache->arch ()/g sergiodj+buildbot
@ 2017-10-27 19:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-27 19:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1912>
Commit(s) tested:
ac7936dfd0c85e5de2dfec45ca0dbf72baeffa51
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
s/get_regcache_arch (regcache)/regcache->arch ()/g
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ac/ac7936dfd0c85e5de2dfec45ca0dbf72baeffa51/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 19:34 [binutils-gdb] Target FP: Use target format throughout expression parsing sergiodj+buildbot
@ 2017-10-27 17:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-27 17:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1911>
Commit(s) tested:
edd079d9f6ca2f9ad21322b742269aec5de61190
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Use target format throughout expression parsing
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ed/edd079d9f6ca2f9ad21322b742269aec5de61190/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/bitops.exp: print value of 0.0 || 0
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-27 3:57 [binutils-gdb] RISC-V: Fix disassembly of c.addi4spn, c.addi16sp, c.lui when imm=0 sergiodj+buildbot
@ 2017-10-27 11:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-27 11:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1906>
Commit(s) tested:
63a25ea0de6d2f6d45b26af8d9c808aa35962256
Author(s) (in the same order as the commits):
Andrew Waterman <andrew@sifive.com>
Subject:
RISC-V: Fix disassembly of c.addi4spn, c.addi16sp, c.lui when imm=0
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/63/63a25ea0de6d2f6d45b26af8d9c808aa35962256/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 16:36 [binutils-gdb] Use const reference for decimal_from_string argument sergiodj+buildbot
@ 2017-10-27 9:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-27 9:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1905>
Commit(s) tested:
09a7c6aa7a07f874f5357cde62b5753a10a5e107
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Use const reference for decimal_from_string argument
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/09/09a7c6aa7a07f874f5357cde62b5753a10a5e107/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 14:06 [binutils-gdb] RISC-V: Only relax to C.LUI when imm != 0 and rd != 0/2 sergiodj+buildbot
@ 2017-10-27 4:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-27 4:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1901>
Commit(s) tested:
3342be5dabeeaf2218dfbf4d38f92214612436f4
Author(s) (in the same order as the commits):
Andrew Waterman <andrew@sifive.com>
Subject:
RISC-V: Only relax to C.LUI when imm != 0 and rd != 0/2
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/33/3342be5dabeeaf2218dfbf4d38f92214612436f4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 13:38 [binutils-gdb] Fix gdb.opt/inline-cmds.exp regressions sergiodj+buildbot
@ 2017-10-27 2:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-27 2:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1900>
Commit(s) tested:
5033013f17524964564dac5d422739ae5214729e
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Fix gdb.opt/inline-cmds.exp regressions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/50/5033013f17524964564dac5d422739ae5214729e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 12:26 [binutils-gdb] Reindent gdb.threads/attach-into-signal.exp sergiodj+buildbot
@ 2017-10-27 0:10 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-27 0:10 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1898>
Commit(s) tested:
eb2bfbadc159ff1463e58daf24c4ad5d1a23796d
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Reindent gdb.threads/attach-into-signal.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/eb/eb2bfbadc159ff1463e58daf24c4ad5d1a23796d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 11:38 [binutils-gdb] Drop /proc/PID/status polling from gdb.threads/attach-into-signal.exp sergiodj+buildbot
@ 2017-10-26 22:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-26 22:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1897>
Commit(s) tested:
1f75a6516a4b480b5521dfb4e1a0721887ab5cdc
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Drop /proc/PID/status polling from gdb.threads/attach-into-signal.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1f/1f75a6516a4b480b5521dfb4e1a0721887ab5cdc/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 16:13 [binutils-gdb] Fix unstable test names in gdb.python/py-objfile.exp sergiodj+buildbot
@ 2017-10-26 20:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-26 20:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1895>
Commit(s) tested:
ad9b8f5d022f777f32cceab9856f47a5b6afcce1
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix unstable test names in gdb.python/py-objfile.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ad/ad9b8f5d022f777f32cceab9856f47a5b6afcce1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 14:44 [binutils-gdb] Fix unstable test names in gdb.gdb/unittest.exp sergiodj+buildbot
@ 2017-10-26 19:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-26 19:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1894>
Commit(s) tested:
fee6da6e1d96796f8aa8308b3833a3e4cdb409ff
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix unstable test names in gdb.gdb/unittest.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fe/fee6da6e1d96796f8aa8308b3833a3e4cdb409ff/>
*** Diff to previous build ***
============================
new FAIL: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 9:40 [binutils-gdb] Fix unstable test names in gdb.base/startup-with-shell.exp sergiodj+buildbot
@ 2017-10-26 18:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-26 18:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1893>
Commit(s) tested:
10389c2c8b56b2519441e55bf16f77882fb897cb
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix unstable test names in gdb.base/startup-with-shell.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/10/10389c2c8b56b2519441e55bf16f77882fb897cb/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 8:44 [binutils-gdb] Make sure that undefined symbols added to the linker command line via the -u option appear in the output executable, if they have not been resolved sergiodj+buildbot
@ 2017-10-26 14:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-26 14:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1890>
Commit(s) tested:
66cae56016a12f7cbdc94be6f82c1cad1c59b521
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Make sure that undefined symbols added to the linker command line via the -u option appear in the output executable, if they have not been resolved.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/66/66cae56016a12f7cbdc94be6f82c1cad1c59b521/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 7:51 [binutils-gdb] Fix the master due to bad regenerated files sergiodj+buildbot
@ 2017-10-26 12:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-26 12:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1889>
Commit(s) tested:
fe4e2a3c9281851c9da99a6e36a2bc96e4279476
Author(s) (in the same order as the commits):
Igor Tsimbalist <igor.v.tsimbalist@intel.com>
Subject:
Fix the master due to bad regenerated files
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fe/fe4e2a3c9281851c9da99a6e36a2bc96e4279476/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-26 7:22 [binutils-gdb] Enable Intel VAES instructions sergiodj+buildbot
@ 2017-10-26 9:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-26 9:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1884>
Commit(s) tested:
8dcf1fadf2b0763962639fc5dcedc1892e502265
Author(s) (in the same order as the commits):
Igor Tsimbalist <igor.v.tsimbalist@intel.com>
Subject:
Enable Intel VAES instructions.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8d/8dcf1fadf2b0763962639fc5dcedc1892e502265/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-21 17:42 [binutils-gdb] Add overloads of for_each_thread/find_thread that filter on pid sergiodj+buildbot
@ 2017-10-21 20:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-21 20:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1878>
Commit(s) tested:
4d3bb80e5db40cd2308157db3c446f35ae97a915
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Add overloads of for_each_thread/find_thread that filter on pid
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4d/4d3bb80e5db40cd2308157db3c446f35ae97a915/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-21 15:59 [binutils-gdb] Create a displaced_step_closure class hierarchy sergiodj+buildbot
@ 2017-10-21 16:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-21 16:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1875>
Commit(s) tested:
cfba98720f62473abc54457a376a3b7aa7ab1e40
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Create a displaced_step_closure class hierarchy
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cf/cfba98720f62473abc54457a376a3b7aa7ab1e40/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-20 19:05 [binutils-gdb] Use std::vector in gdb_bfd_data sergiodj+buildbot
@ 2017-10-20 20:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-20 20:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1871>
Commit(s) tested:
d5833c62d93e8176b70e8509ab36cc38801c3ebd
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use std::vector in gdb_bfd_data
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d5/d5833c62d93e8176b70e8509ab36cc38801c3ebd/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-20 16:28 [binutils-gdb] Introduce new_bfd_ref sergiodj+buildbot
@ 2017-10-20 18:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-20 18:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1869>
Commit(s) tested:
2712ce2e659f82168154d4533f53d2963ae82571
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Introduce new_bfd_ref
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/27/2712ce2e659f82168154d4533f53d2963ae82571/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-20 15:58 [binutils-gdb] Fix 'gdb.base/quit.exp hangs forever' if the test fails sergiodj+buildbot
@ 2017-10-20 16:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-20 16:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1868>
Commit(s) tested:
15763a09d4aea85fc3153d6746c040dd48565637
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix 'gdb.base/quit.exp hangs forever' if the test fails
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/15/15763a09d4aea85fc3153d6746c040dd48565637/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-20 14:57 [binutils-gdb] Fix gdb.gdb/ selftest tests when testing optimized GDB builds sergiodj+buildbot
@ 2017-10-20 14:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-20 14:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1867>
Commit(s) tested:
fcc8fb2f3de370f2def30bb18c98243ed4f3fb8c
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix gdb.gdb/ selftest tests when testing optimized GDB builds
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fc/fcc8fb2f3de370f2def30bb18c98243ed4f3fb8c/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-20 2:37 [binutils-gdb] Get rid of VEC(interp_factory_p) sergiodj+buildbot
@ 2017-10-20 2:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-20 2:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1866>
Commit(s) tested:
4c2287b0bdfbed95d37d09222fc253f4c5086ada
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Get rid of VEC(interp_factory_p)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4c/4c2287b0bdfbed95d37d09222fc253f4c5086ada/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: other threads didn't run - locked
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-20 0:58 [binutils-gdb] Remove cleanups from break-catch-syscall.c sergiodj+buildbot
@ 2017-10-20 0:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-20 0:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1865>
Commit(s) tested:
3d415c26bad3a15eed00d2ddf85c4268df77a4cc
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanups from break-catch-syscall.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3d/3d415c26bad3a15eed00d2ddf85c4268df77a4cc/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-19 20:39 [binutils-gdb] gdb: Remove hard-coded line number from test sergiodj+buildbot
@ 2017-10-19 20:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-19 20:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1862>
Commit(s) tested:
49a4ce2eae231ae627ab9a312256c6e402b5a27e
Author(s) (in the same order as the commits):
Andrew Burgess <andrew.burgess@embecosm.com>
Subject:
gdb: Remove hard-coded line number from test
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/49/49a4ce2eae231ae627ab9a312256c6e402b5a27e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-19 18:15 [binutils-gdb] Fix build breakage in gdb/xml-support.c sergiodj+buildbot
@ 2017-10-19 19:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-19 19:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1861>
Commit(s) tested:
63929e843d54d327676bed4d86dad280f4675547
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix build breakage in gdb/xml-support.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/63/63929e843d54d327676bed4d86dad280f4675547/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-19 13:54 [binutils-gdb] tilegx: Check bfd_link_executable for TLS check sergiodj+buildbot
@ 2017-10-19 15:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-19 15:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1856>
Commit(s) tested:
280958942b74f3164708700f195188c4d3446f58
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
tilegx: Check bfd_link_executable for TLS check
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/28/280958942b74f3164708700f195188c4d3446f58/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-19 12:45 [binutils-gdb] sparc: Check bfd_link_executable for TLS check sergiodj+buildbot
@ 2017-10-19 12:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-19 12:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1854>
Commit(s) tested:
0fb7012e88683b8bd67a4fb8f782359fa0e11724
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
sparc: Check bfd_link_executable for TLS check
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0f/0fb7012e88683b8bd67a4fb8f782359fa0e11724/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-18 14:57 [binutils-gdb] [Visium] Disassemble the operands of the stop instruction sergiodj+buildbot
@ 2017-10-18 14:57 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-18 14:57 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1850>
Commit(s) tested:
2a6969e1738859ea8c12837fb0cba3845bc87ceb
Author(s) (in the same order as the commits):
Eric Botcazou <ebotcazou@gcc.gnu.org>
Subject:
[Visium] Disassemble the operands of the stop instruction.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2a/2a6969e1738859ea8c12837fb0cba3845bc87ceb/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-18 12:24 [binutils-gdb] Remove features/tic6x-c62x-linux.c sergiodj+buildbot
@ 2017-10-18 12:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-18 12:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1849>
Commit(s) tested:
28c7c158766513a1c6f599c08f85851fcab855e6
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Remove features/tic6x-c62x-linux.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/28/28c7c158766513a1c6f599c08f85851fcab855e6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-17 20:14 [binutils-gdb] Really make the native-stdio-gdbserver board non-remote sergiodj+buildbot
@ 2017-10-18 0:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-18 0:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1847>
Commit(s) tested:
b27de576d41eed16936cf639857df4e1e27a8e9e
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Really make the native-stdio-gdbserver board non-remote
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b2/b27de576d41eed16936cf639857df4e1e27a8e9e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-17 17:30 [binutils-gdb] Add several "quit with live inferior" tests sergiodj+buildbot
@ 2017-10-17 23:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-17 23: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/1846>
Commit(s) tested:
8484c9554519c25c73a349d0581cc269f102c5d2
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add several "quit with live inferior" tests
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/84/8484c9554519c25c73a349d0581cc269f102c5d2/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/quit-live.exp: appear_how=attach: extra_inferior=0: quit_how=quit: attach
new FAIL: gdb.base/quit-live.exp: appear_how=attach: extra_inferior=0: quit_how=sigterm: attach
new FAIL: gdb.base/quit-live.exp: appear_how=attach: extra_inferior=0: quit_how=sighup: attach
new FAIL: gdb.base/quit-live.exp: appear_how=attach: extra_inferior=1: quit_how=quit: attach
new FAIL: gdb.base/quit-live.exp: appear_how=attach: extra_inferior=1: quit_how=sigterm: attach
new FAIL: gdb.base/quit-live.exp: appear_how=attach: extra_inferior=1: quit_how=sighup: attach
new FAIL: gdb.base/quit-live.exp: appear_how=attach-nofile: extra_inferior=0: quit_how=quit: attach
new FAIL: gdb.base/quit-live.exp: appear_how=attach-nofile: extra_inferior=0: quit_how=sigterm: attach
new FAIL: gdb.base/quit-live.exp: appear_how=attach-nofile: extra_inferior=0: quit_how=sighup: attach
new FAIL: gdb.base/quit-live.exp: appear_how=attach-nofile: extra_inferior=1: quit_how=quit: attach
new FAIL: gdb.base/quit-live.exp: appear_how=attach-nofile: extra_inferior=1: quit_how=sigterm: attach
new FAIL: gdb.base/quit-live.exp: appear_how=attach-nofile: extra_inferior=1: quit_how=sighup: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-17 16:58 [binutils-gdb] Remove cleanups from disasm.c sergiodj+buildbot
@ 2017-10-17 22:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-17 22:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1845>
Commit(s) tested:
30f0b1015897466fb88ed26c56a0b4f42808edbc
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanups from disasm.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/30/30f0b1015897466fb88ed26c56a0b4f42808edbc/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-17 14:44 [binutils-gdb] Fix double-free corruption sergiodj+buildbot
@ 2017-10-17 18:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-17 18:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1842>
Commit(s) tested:
7b7009999ab8daac9db776c850b7df6e1f586334
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix double-free corruption
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7b/7b7009999ab8daac9db776c850b7df6e1f586334/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-17 13:53 [binutils-gdb] [GDBserver] Move arm-linux.o and arm-get-next-pcs.o to arch/ sergiodj+buildbot
@ 2017-10-17 14:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-17 14:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1839>
Commit(s) tested:
e675d1703fbdec643ec42aa67b9720cb199f4375
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
[GDBserver] Move arm-linux.o and arm-get-next-pcs.o to arch/
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e6/e675d1703fbdec643ec42aa67b9720cb199f4375/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-17 12:52 [binutils-gdb] [GDBserver] Move arm.o to arch/arm.o sergiodj+buildbot
@ 2017-10-17 12:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-17 12:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1838>
Commit(s) tested:
7eb4e0f95641edebbc28a710f28111f0ecb9f0d1
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
[GDBserver] Move arm.o to arch/arm.o
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7e/7eb4e0f95641edebbc28a710f28111f0ecb9f0d1/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-17 11:42 [binutils-gdb] [GDBserver] Replicate src dir in build dir sergiodj+buildbot
@ 2017-10-17 11:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-17 11:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1837>
Commit(s) tested:
60d6cfc99e67c3f94e31e26112873719b12b738f
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
[GDBserver] Replicate src dir in build dir
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/60/60d6cfc99e67c3f94e31e26112873719b12b738f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-17 2:05 [binutils-gdb] Record and output access specifiers for nested typedefs sergiodj+buildbot
@ 2017-10-17 6:44 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-17 6:44 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1835>
Commit(s) tested:
c191a6875b118fce30e7dc4d9e4bd20eff850270
Author(s) (in the same order as the commits):
Keith Seitz <keiths@redhat.com>
Subject:
Record and output access specifiers for nested typedefs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c1/c191a6875b118fce30e7dc4d9e4bd20eff850270/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-17 1:45 [binutils-gdb] Return unique_xmalloc_ptr from target_fileio_read_stralloc sergiodj+buildbot
@ 2017-10-17 5:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-17 5:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1834>
Commit(s) tested:
87028b873938aa3cc756c99e33a328640dbc30bc
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Return unique_xmalloc_ptr from target_fileio_read_stralloc
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/87/87028b873938aa3cc756c99e33a328640dbc30bc/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-17 1:24 [binutils-gdb] Return unique_xmalloc_ptr from target_read_stralloc sergiodj+buildbot
@ 2017-10-17 4:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-17 4:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1833>
Commit(s) tested:
b7b030adc405017f01e996a90f85e40730ef8397
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Return unique_xmalloc_ptr from target_read_stralloc
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b7/b7b030adc405017f01e996a90f85e40730ef8397/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-16 22:35 [binutils-gdb] Use std::vector in end_symtab_get_static_block sergiodj+buildbot
@ 2017-10-16 22:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-16 22:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1829>
Commit(s) tested:
b05628f0a878cdd64492bbc49d60003d699763ad
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use std::vector in end_symtab_get_static_block
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b0/b05628f0a878cdd64492bbc49d60003d699763ad/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.opt/inline-cmds.exp: backtrace from bar
PASS -> FAIL: gdb.opt/inline-cmds.exp: up from bar
PASS -> FAIL: gdb.opt/inline-cmds.exp: func2 inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: enter outer_inline1 from outer_inline2
PASS -> FAIL: gdb.opt/inline-cmds.exp: backtrace at outer_inline1
PASS -> FAIL: gdb.opt/inline-cmds.exp: enter noinline from outer_inline1
PASS -> FAIL: gdb.opt/inline-cmds.exp: backtrace at noinline from outer_inline1
PASS -> FAIL: gdb.opt/inline-cmds.exp: enter inlined_fn from noinline
PASS -> FAIL: gdb.opt/inline-cmds.exp: backtrace at inlined_fn from noinline
PASS -> FAIL: gdb.opt/inline-cmds.exp: inlined_fn from noinline inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: up to noinline
PASS -> FAIL: gdb.opt/inline-cmds.exp: noinline from outer_inline1 not inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: up to outer_inline1
PASS -> FAIL: gdb.opt/inline-cmds.exp: outer_inline1 inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: up to outer_inline2
PASS -> FAIL: gdb.opt/inline-cmds.exp: outer_inline2 inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: up from outer_inline2
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-16 19:33 [binutils-gdb] Use proc_with_prefix in py-breakpoint.exp sergiodj+buildbot
@ 2017-10-16 19:33 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-16 19:33 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1827>
Commit(s) tested:
fe68b9530f6ec45d57838b96dbe11723b90467f4
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Use proc_with_prefix in py-breakpoint.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fe/fe68b9530f6ec45d57838b96dbe11723b90467f4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-16 15:34 [binutils-gdb] Get rid of VEC(mem_range_s) sergiodj+buildbot
@ 2017-10-16 17:53 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-16 17:53 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1826>
Commit(s) tested:
a79b1bc6f690f3d146a3caddabd9f13a886c856a
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Get rid of VEC(mem_range_s)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a7/a79b1bc6f690f3d146a3caddabd9f13a886c856a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-16 11:51 [binutils-gdb] ELF: Call check_relocs after opening all inputs sergiodj+buildbot
@ 2017-10-16 15:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-16 15:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1824>
Commit(s) tested:
5c3261b0e834647cf9eb555320e20871b7854f98
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
ELF: Call check_relocs after opening all inputs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5c/5c3261b0e834647cf9eb555320e20871b7854f98/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-16 10:50 [binutils-gdb] Regenerate gdbserver/configure sergiodj+buildbot
@ 2017-10-16 14:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-16 14:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1823>
Commit(s) tested:
5bfda25568c34410129c91042cdfdf10c143edac
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Regenerate gdbserver/configure
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5b/5bfda25568c34410129c91042cdfdf10c143edac/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-16 2:42 [binutils-gdb] Fix GDB build without expat sergiodj+buildbot
@ 2017-10-16 2:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-16 2:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1819>
Commit(s) tested:
8676616596351876612aa84be798537625348086
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Fix GDB build without expat
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/86/8676616596351876612aa84be798537625348086/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-14 12:31 [binutils-gdb] Replace psymbol_allocation_list with std::vector sergiodj+buildbot
@ 2017-10-14 17:10 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-14 17:10 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1792>
Commit(s) tested:
af5bf4ada48ff65b6658be1fab8f9c8f8ab5f319
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Replace psymbol_allocation_list with std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/af/af5bf4ada48ff65b6658be1fab8f9c8f8ab5f319/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-14 3:35 [binutils-gdb] ada: Use std::string in print_dynamic_range_bound sergiodj+buildbot
@ 2017-10-14 15:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-14 15: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/1791>
Commit(s) tested:
3ec5942fbf8501db10784b0dff7d24222a113728
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
ada: Use std::string in print_dynamic_range_bound
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3e/3ec5942fbf8501db10784b0dff7d24222a113728/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-14 5:29 [binutils-gdb] Don't run gdb.gdb/ selftests if use_gdb_stub is true sergiodj+buildbot
@ 2017-10-14 11:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-14 11:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1788>
Commit(s) tested:
dad0c6d2f7410d3b451800f856f3c6818303c316
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Don't run gdb.gdb/ selftests if use_gdb_stub is true
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/da/dad0c6d2f7410d3b451800f856f3c6818303c316/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 16:57 [binutils-gdb] Make gdb.base/find-unmapped.exp pass on remote targets sergiodj+buildbot
@ 2017-10-14 9:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-14 9:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1787>
Commit(s) tested:
8b0553c18f0dc63ab0ae930f2e8eed2bce4cd32c
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Make gdb.base/find-unmapped.exp pass on remote targets
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8b/8b0553c18f0dc63ab0ae930f2e8eed2bce4cd32c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-14 2:59 [binutils-gdb] Simplify tic6x and s390x expedite registers sergiodj+buildbot
@ 2017-10-14 8:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-14 8:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1786>
Commit(s) tested:
2399fe6ab0b6ee64c569992e4bc3bbae3b5b2193
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Simplify tic6x and s390x expedite registers
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/23/2399fe6ab0b6ee64c569992e4bc3bbae3b5b2193/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 14:55 [binutils-gdb] Fix gdb.base/term.exp on non-"target native" boards sergiodj+buildbot
@ 2017-10-14 4:44 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-14 4:44 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1783>
Commit(s) tested:
7594f6236073fcc8696c43e1f5267e61f7d5c226
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix gdb.base/term.exp on non-"target native" boards
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/75/7594f6236073fcc8696c43e1f5267e61f7d5c226/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 14:31 [binutils-gdb] Remove is_remote kfail from gdb.python/py-evthreads.exp sergiodj+buildbot
@ 2017-10-14 3:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-14 3:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1782>
Commit(s) tested:
ebe3b40202042fc644df5ea3bd111425ba1aeeee
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Remove is_remote kfail from gdb.python/py-evthreads.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/eb/ebe3b40202042fc644df5ea3bd111425ba1aeeee/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.threads/sigstep-threads.exp: step 3
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 12:51 [binutils-gdb] kfail gdb.python/py-evsignal.exp on RSP targets properly sergiodj+buildbot
@ 2017-10-14 0:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-14 0:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1780>
Commit(s) tested:
8d6ef72b0470dfb1133525c8c4556d3578744ac4
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
kfail gdb.python/py-evsignal.exp on RSP targets properly
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8d/8d6ef72b0470dfb1133525c8c4556d3578744ac4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 11:37 [binutils-gdb] Fix is_remote check in gdb.base/remote.exp sergiodj+buildbot
@ 2017-10-13 21:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 21:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1777>
Commit(s) tested:
23fb630af09f2601e7cb75233837399d67cfd017
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix is_remote check in gdb.base/remote.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/23/23fb630af09f2601e7cb75233837399d67cfd017/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 10:49 [binutils-gdb] gdb.base/remote.exp: Fix typo and add missing return sergiodj+buildbot
@ 2017-10-13 19:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 19:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1776>
Commit(s) tested:
cc77b1dc33790bcb852c8c72e2efebaa3b505b01
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
gdb.base/remote.exp: Fix typo and add missing return
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cc/cc77b1dc33790bcb852c8c72e2efebaa3b505b01/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 16:26 [binutils-gdb] Make gdb.base/solib-nodir.exp work with --target_board=native-extended-gdbserver sergiodj+buildbot
@ 2017-10-13 18:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 18:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1775>
Commit(s) tested:
27c9e813f93974c2d1e237f3c4f25029627bcb58
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Make gdb.base/solib-nodir.exp work with --target_board=native-extended-gdbserver
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/27/27c9e813f93974c2d1e237f3c4f25029627bcb58/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 9:47 [binutils-gdb] Eliminate is_remote check in gdb.base/shlib-call.exp sergiodj+buildbot
@ 2017-10-13 16:49 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 16:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1774>
Commit(s) tested:
5e830d9807b91f806524ff822d953443c8fb3d2f
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Eliminate is_remote check in gdb.base/shlib-call.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5e/5e830d9807b91f806524ff822d953443c8fb3d2f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 5:12 [binutils-gdb] Remove simple_displaced_step_copy_insn sergiodj+buildbot
@ 2017-10-13 15:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 15:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1773>
Commit(s) tested:
c2508e905f956c5a5e0d2a7fff58b4c746180237
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Remove simple_displaced_step_copy_insn
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c2/c2508e905f956c5a5e0d2a7fff58b4c746180237/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 4:53 [binutils-gdb] FT32: support for FT32B processor - part 1 sergiodj+buildbot
@ 2017-10-13 14:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 14:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1772>
Commit(s) tested:
3b4b0a629a972bf80fc0ac6202f89681fab1df37
Author(s) (in the same order as the commits):
James Bowman <jamesb@excamera.com>
Subject:
FT32: support for FT32B processor - part 1
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3b/3b4b0a629a972bf80fc0ac6202f89681fab1df37/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 4:31 [binutils-gdb] Add myself as ft32 maintainer for sim sergiodj+buildbot
@ 2017-10-13 12:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 12:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1771>
Commit(s) tested:
d268bbaff7da90caf5fbc94456ae58315ffa1802
Author(s) (in the same order as the commits):
James Bowman <jamesb@excamera.com>
Subject:
Add myself as ft32 maintainer for sim.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d2/d268bbaff7da90caf5fbc94456ae58315ffa1802/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 3:20 [binutils-gdb] Remove references to gdb64 in the testsuite sergiodj+buildbot
@ 2017-10-13 9:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 9:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1769>
Commit(s) tested:
8aed1c0d04e6d0eb7d0790c4691665cffef573b7
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Remove references to gdb64 in the testsuite
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8a/8aed1c0d04e6d0eb7d0790c4691665cffef573b7/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 3:01 [binutils-gdb] Remove is_remote check in labels.exp sergiodj+buildbot
@ 2017-10-13 7:53 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 7:53 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1768>
Commit(s) tested:
cfa34c871c6644bd7b132b5ca7f2217880f5fa9b
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove is_remote check in labels.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cf/cfa34c871c6644bd7b132b5ca7f2217880f5fa9b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 2:40 [binutils-gdb] Make gdb.base/auvx.exp work with --target_board=native-extended-gdbserver sergiodj+buildbot
@ 2017-10-13 6:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 6:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1767>
Commit(s) tested:
9192b7decc7256a41502bf68df36f429cceffc89
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Make gdb.base/auvx.exp work with --target_board=native-extended-gdbserver
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/91/9192b7decc7256a41502bf68df36f429cceffc89/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 1:49 [binutils-gdb] Use bool in pv_area sergiodj+buildbot
@ 2017-10-13 5:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 5:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1766>
Commit(s) tested:
a900ff724a725ea951ba8b17232577e1a4b4866e
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use bool in pv_area
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a9/a900ff724a725ea951ba8b17232577e1a4b4866e/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 0:40 [binutils-gdb] C++-ify prologue-value's pv_area sergiodj+buildbot
@ 2017-10-13 4:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 4:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1765>
Commit(s) tested:
f7b7ed97a23e2bf4a2ec27bef0fe0af55a080a94
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
C++-ify prologue-value's pv_area
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f7/f7b7ed97a23e2bf4a2ec27bef0fe0af55a080a94/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-12 23:51 [binutils-gdb] linux low: Make the arch code free arch_process_info sergiodj+buildbot
@ 2017-10-13 2:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 2:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1764>
Commit(s) tested:
04ec7890fccfa5ddd9cc92961a4df58957ca181b
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
linux low: Make the arch code free arch_process_info
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/04/04ec7890fccfa5ddd9cc92961a4df58957ca181b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-12 21:52 [binutils-gdb] lwp_info: Make the arch code free arch_lwp_info sergiodj+buildbot
@ 2017-10-13 1:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 1:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1763>
Commit(s) tested:
466eeceef409597388dd2b4e8b907cf080bedcf1
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
lwp_info: Make the arch code free arch_lwp_info
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/46/466eeceef409597388dd2b4e8b907cf080bedcf1/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-13 0:06 [binutils-gdb] Run gdb.base/catch-fork-static.exp on remote target boards sergiodj+buildbot
@ 2017-10-13 0:06 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 0:06 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1762>
Commit(s) tested:
6bf0052db8bbeed41e512d1d3ce14ba2a446723d
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Run gdb.base/catch-fork-static.exp on remote target boards
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6b/6bf0052db8bbeed41e512d1d3ce14ba2a446723d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-12 19:33 [binutils-gdb] checkpoint.exp: Check for non-"target native" instead of isnative/is_remote sergiodj+buildbot
@ 2017-10-12 22:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-12 22:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1761>
Commit(s) tested:
e48ef82dd2fc85560d14a45a632c82eaaadca7ce
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
checkpoint.exp: Check for non-"target native" instead of isnative/is_remote
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e4/e48ef82dd2fc85560d14a45a632c82eaaadca7ce/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-12 19:12 [binutils-gdb] Remove is_remote target check from gdb.base/dprintf-non-stop.exp sergiodj+buildbot
@ 2017-10-12 21:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-12 21:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1760>
Commit(s) tested:
8d7aea574a8ab3a235088866860df75b542ae4a3
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Remove is_remote target check from gdb.base/dprintf-non-stop.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8d/8d7aea574a8ab3a235088866860df75b542ae4a3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-12 18:52 [binutils-gdb] Tighten remote check in gdb.base/argv0-symlink.exp sergiodj+buildbot
@ 2017-10-12 20:13 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-12 20:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1759>
Commit(s) tested:
30440677f3d0cdd2085bea40496774ffa24f6bb1
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Tighten remote check in gdb.base/argv0-symlink.exp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/30/30440677f3d0cdd2085bea40496774ffa24f6bb1/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-12 18:10 [binutils-gdb] Enable gdb.base/inferior-died.exp on is_remote target boards sergiodj+buildbot
@ 2017-10-12 18:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-12 18:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1758>
Commit(s) tested:
4e04f0450f83d8d0ad08579b5e6c8b4e8a8e693f
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Enable gdb.base/inferior-died.exp on is_remote target boards
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4e/4e04f0450f83d8d0ad08579b5e6c8b4e8a8e693f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-12 13:05 [binutils-gdb] Force the AArch64 linker backend to refuse to link when it encounters unresoleable relocations sergiodj+buildbot
@ 2017-10-12 13:05 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-12 13:05 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1756>
Commit(s) tested:
1d75a8e26e6def4f492c84a5f678e41ddebda799
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Force the AArch64 linker backend to refuse to link when it encounters unresoleable relocations.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1d/1d75a8e26e6def4f492c84a5f678e41ddebda799/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-12 9:37 [binutils-gdb] x86: Add _bfd_x86_elf_hide_symbol sergiodj+buildbot
@ 2017-10-12 9:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-12 9:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1755>
Commit(s) tested:
9f8575350f980aa6da8c488c6aa30862620eaa1f
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Add _bfd_x86_elf_hide_symbol
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9f/9f8575350f980aa6da8c488c6aa30862620eaa1f/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/starti.exp: setting breakpoint at main
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-12 3:43 [binutils-gdb] _bfd_elf_link_hash_hide_symbol calls in generic ELF code sergiodj+buildbot
@ 2017-10-12 7:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-12 7:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1754>
Commit(s) tested:
559192d89d743834951fc386530c6bc7f89b358d
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
_bfd_elf_link_hash_hide_symbol calls in generic ELF code
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/55/559192d89d743834951fc386530c6bc7f89b358d/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-11 23:12 [binutils-gdb] Constify add_prefix_cmd sergiodj+buildbot
@ 2017-10-12 3:13 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-12 3:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1751>
Commit(s) tested:
981a3fb3594dddae266b7a5014c3001727200d7b
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify add_prefix_cmd
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/98/981a3fb3594dddae266b7a5014c3001727200d7b/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-11 22:52 [binutils-gdb] Remove prepare_re_set_context sergiodj+buildbot
@ 2017-10-12 1:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-12 1:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1750>
Commit(s) tested:
fdf44873ec6e37417bf8c8ce33bb9b1a6b4ddcef
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove prepare_re_set_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fd/fdf44873ec6e37417bf8c8ce33bb9b1a6b4ddcef/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-11 20:03 [binutils-gdb] Add FreeBSD/arm architecture sergiodj+buildbot
@ 2017-10-11 22:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-11 22:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1747>
Commit(s) tested:
7176dfd28d1a2a74e6d8dd698aeb857eb6edfb98
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Add FreeBSD/arm architecture.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/71/7176dfd28d1a2a74e6d8dd698aeb857eb6edfb98/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-11 16:50 [binutils-gdb] GDB: Remove Linux core PRPSINFO note writer override sergiodj+buildbot
@ 2017-10-11 20:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-11 20:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1746>
Commit(s) tested:
fe22022617a7122491aa83c893a10a8d861cde73
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@imgtec.com>
Subject:
GDB: Remove Linux core PRPSINFO note writer override
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/fe/fe22022617a7122491aa83c893a10a8d861cde73/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-11 16:30 [binutils-gdb] ELF/BFD: Handle both variants of the 64-bit Linux core PRPSINFO note sergiodj+buildbot
@ 2017-10-11 19:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-11 19:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1745>
Commit(s) tested:
3c9a7b0d6d84425ea24d222a1a31e206e587374f
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@imgtec.com>
Subject:
ELF/BFD: Handle both variants of the 64-bit Linux core PRPSINFO note
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3c/3c9a7b0d6d84425ea24d222a1a31e206e587374f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-11 16:09 [binutils-gdb] ELF/BFD, GDB: Handle both variants of the 32-bit Linux core PRPSINFO note sergiodj+buildbot
@ 2017-10-11 18:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-11 18:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1744>
Commit(s) tested:
a2f63b2e7a5da01ff828b45c7e0e57265ee24131
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@imgtec.com>
Subject:
ELF/BFD,GDB: Handle both variants of the 32-bit Linux core PRPSINFO note
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a2/a2f63b2e7a5da01ff828b45c7e0e57265ee24131/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-11 13:11 [binutils-gdb] arc: Pass proper CPU value to the disassembler sergiodj+buildbot
@ 2017-10-11 13:25 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-11 13:25 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1740>
Commit(s) tested:
56d704daee44b036d1eff86123de6dec0c55f61b
Author(s) (in the same order as the commits):
Anton Kolesov <Anton.Kolesov@synopsys.com>
Subject:
arc: Pass proper CPU value to the disassembler
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/56/56d704daee44b036d1eff86123de6dec0c55f61b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-11 12:08 [binutils-gdb] Rename _doprnt -> _bfd_doprnt to fix DJGPP bfd build (and likely others) sergiodj+buildbot
@ 2017-10-11 12:13 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-11 12:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1739>
Commit(s) tested:
8f314ad58ec824ce6c8467af29f11583f79a80ea
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Rename _doprnt -> _bfd_doprnt to fix DJGPP bfd build (and likely others)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8f/8f314ad58ec824ce6c8467af29f11583f79a80ea/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-11 10:21 [binutils-gdb] Remove unnecessary parentheses in declarations sergiodj+buildbot
@ 2017-10-11 10:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-11 10:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1738>
Commit(s) tested:
7fa29be949a96f68ee65dcdb4f56f132609170db
Author(s) (in the same order as the commits):
Egeyar Bagcioglu <egeyar.bagcioglu@oracle.com>
Subject:
Remove unnecessary parentheses in declarations
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/7f/7fa29be949a96f68ee65dcdb4f56f132609170db/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-10 23:19 [binutils-gdb] x86: Set GOT refcount to 1 sergiodj+buildbot
@ 2017-10-11 0:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-11 0:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1736>
Commit(s) tested:
0f09b4d8d8f7c5d249c8375c5c42d4eba3bdc858
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Set GOT refcount to 1
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0f/0f09b4d8d8f7c5d249c8375c5c42d4eba3bdc858/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-10 16:39 [binutils-gdb] Eliminate catch_errors sergiodj+buildbot
@ 2017-10-10 17:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-10 17:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1733>
Commit(s) tested:
bf4692711232eb96cd840f96d88897a2746d8190
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Eliminate catch_errors
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bf/bf4692711232eb96cd840f96d88897a2746d8190/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-10 16:08 [binutils-gdb] [ARM] PR ld/21402, only override the symbol dynamic decision on undefined weak symbol sergiodj+buildbot
@ 2017-10-10 16:08 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-10 16:08 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1732>
Commit(s) tested:
6c699715f68be7d8c468e965fbefce997f7ed937
Author(s) (in the same order as the commits):
Renlin Li <renlin.li@arm.com>
Subject:
[ARM] PR ld/21402, only override the symbol dynamic decision on undefined weak symbol.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6c/6c699715f68be7d8c468e965fbefce997f7ed937/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-10 0:23 [binutils-gdb] Remove free_splay_tree cleanup sergiodj+buildbot
@ 2017-10-10 8:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-10 8:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1729>
Commit(s) tested:
1a56bfa56ed967c5f6ed98f75834408417a062ff
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove free_splay_tree cleanup
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1a/1a56bfa56ed967c5f6ed98f75834408417a062ff/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 22:40 [binutils-gdb] mn10300: Don't free cached internal symbol table sergiodj+buildbot
@ 2017-10-10 5:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-10 5:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1727>
Commit(s) tested:
478c006f9b4a64d59c31aed081c14c1d7dd4ba68
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
mn10300: Don't free cached internal symbol table
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/47/478c006f9b4a64d59c31aed081c14c1d7dd4ba68/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-10 0:15 [binutils-gdb] bfin: Don't create .interp section for info->nointerp sergiodj+buildbot
@ 2017-10-10 4:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-10 4:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1726>
Commit(s) tested:
9d45a7de8b80336b9965ee99353c34be85b1b98f
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
bfin: Don't create .interp section for info->nointerp
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9d/9d45a7de8b80336b9965ee99353c34be85b1b98f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 19:41 [binutils-gdb] gdb.multi/multi-arch-exec.exp: Also test -m32 => -m64 sergiodj+buildbot
@ 2017-10-10 2:43 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-10 2:43 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1725>
Commit(s) tested:
777a42f1f86b60d11cfe0e5964036823e6920f79
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
gdb.multi/multi-arch-exec.exp: Also test -m32 => -m64
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/77/777a42f1f86b60d11cfe0e5964036823e6920f79/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 21:45 [binutils-gdb] Multi-arch exec, more register reading avoidance sergiodj+buildbot
@ 2017-10-10 1:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-10 1:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1723>
Commit(s) tested:
cbd2b4e316370ab740433b06ed65786831232c8f
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Multi-arch exec, more register reading avoidance
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cb/cbd2b4e316370ab740433b06ed65786831232c8f/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 18:14 [binutils-gdb] Don't try building gdb against guile-2.2 sergiodj+buildbot
@ 2017-10-09 22:53 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-09 22:53 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1721>
Commit(s) tested:
6e66f7538112d2f5fb1af17dbde33ba37a7171be
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
Don't try building gdb against guile-2.2
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6e/6e66f7538112d2f5fb1af17dbde33ba37a7171be/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 17:56 [binutils-gdb] S/390: Sync with latest POP - 3 new instructions sergiodj+buildbot
@ 2017-10-09 21:41 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-09 21:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1720>
Commit(s) tested:
8e464506d2131fc931c4f81a22cc7125b7adf434
Author(s) (in the same order as the commits):
Andreas Krebbel <krebbel@linux.vnet.ibm.com>
Subject:
S/390: Sync with latest POP - 3 new instructions
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8e/8e464506d2131fc931c4f81a22cc7125b7adf434/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 16:13 [binutils-gdb] Fix automatic dependency tracking sergiodj+buildbot
@ 2017-10-09 18:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-09 18:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1718>
Commit(s) tested:
890e97902a21a3b88f9b6028852736b813303029
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Fix automatic dependency tracking
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/89/890e97902a21a3b88f9b6028852736b813303029/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 15:34 [binutils-gdb] Make cp_remove_params return a gdb::unique_xmalloc_ptr sergiodj+buildbot
@ 2017-10-09 17:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-09 17:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1717>
Commit(s) tested:
109483d9eec3f0d0c3eaafd5d829435059167c52
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Make cp_remove_params return a gdb::unique_xmalloc_ptr
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/10/109483d9eec3f0d0c3eaafd5d829435059167c52/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 7:27 [binutils-gdb] Remove some cleanups from dwarf2read.c sergiodj+buildbot
@ 2017-10-09 12:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-09 12:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1715>
Commit(s) tested:
791afaa233ca9f4baa59aa16062296a00aa2c4da
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove some cleanups from dwarf2read.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/79/791afaa233ca9f4baa59aa16062296a00aa2c4da/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 5:51 [binutils-gdb] Remove make_cleanup_value_free sergiodj+buildbot
@ 2017-10-09 9:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-09 9:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1713>
Commit(s) tested:
757325a3f24e01bf8e7b7214f33c546bc52d1d12
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove make_cleanup_value_free
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/75/757325a3f24e01bf8e7b7214f33c546bc52d1d12/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 5:31 [binutils-gdb] Change search_symbols to return std::vector sergiodj+buildbot
@ 2017-10-09 7:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-09 7:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1712>
Commit(s) tested:
b9c04fb2681dd5706d2cafa5dcc6bdcd99016cf4
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change search_symbols to return std::vector
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b9/b9c04fb2681dd5706d2cafa5dcc6bdcd99016cf4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 5:11 [binutils-gdb] PR22212, memory leak in nm sergiodj+buildbot
@ 2017-10-09 6:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-09 6:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1711>
Commit(s) tested:
b55ec8b676ed05d93ee49d6c79ae0403616c4fb0
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22212, memory leak in nm
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b5/b55ec8b676ed05d93ee49d6c79ae0403616c4fb0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 1:20 [binutils-gdb] sh: Dump dynamic relocation info to the map file sergiodj+buildbot
@ 2017-10-09 3:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-09 3:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1710>
Commit(s) tested:
a72f95f7760bf85693af393c5e01dd3aedbe5bde
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
sh: Dump dynamic relocation info to the map file
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a7/a72f95f7760bf85693af393c5e01dd3aedbe5bde/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-09 0:35 [binutils-gdb] sparc: Remove a strayed comment sergiodj+buildbot
@ 2017-10-09 1:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-09 1:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1709>
Commit(s) tested:
f9799aae8e51948c1d87fbe7249b3d76dcb4585d
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
sparc: Remove a strayed comment
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f9/f9799aae8e51948c1d87fbe7249b3d76dcb4585d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-08 20:47 [binutils-gdb] Reformat elf_x86_allocate_dynrelocs sergiodj+buildbot
@ 2017-10-08 21:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-08 21:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1707>
Commit(s) tested:
70090aa5f629dcbdfa88b20c29951fa8f50f0545
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
Reformat elf_x86_allocate_dynrelocs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/70/70090aa5f629dcbdfa88b20c29951fa8f50f0545/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-08 0:51 [binutils-gdb] sparc: Dump dynamic relocation info to the map file sergiodj+buildbot
@ 2017-10-08 2:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-08 2:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1705>
Commit(s) tested:
f0f07ad1825e9b7f539e410562993b25f76e5627
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
sparc: Dump dynamic relocation info to the map file
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f0/f0f07ad1825e9b7f539e410562993b25f76e5627/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-06 22:49 [binutils-gdb] Skip gdb.mi/mi-threads-interrupt.exp if nointerrupts sergiodj+buildbot
@ 2017-10-07 12:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-07 12:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1702>
Commit(s) tested:
b3b7c423883ad8d8b81f166ad2d2d4b637086bc0
Author(s) (in the same order as the commits):
Sandra Loosemore <sandra@codesourcery.com>
Subject:
Skip gdb.mi/mi-threads-interrupt.exp if nointerrupts.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b3/b3b7c423883ad8d8b81f166ad2d2d4b637086bc0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-06 13:38 [binutils-gdb] Move arm.o arm-get-next-pcs.o arm-linux.o to arch/ sergiodj+buildbot
@ 2017-10-07 7:49 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-07 7:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1699>
Commit(s) tested:
71917808c3490b4d4df9c6e848e3c5d75f5278d2
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Move arm.o arm-get-next-pcs.o arm-linux.o to arch/
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/71/71917808c3490b4d4df9c6e848e3c5d75f5278d2/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-06 11:06 [binutils-gdb] Fix more GDB build breakage on mingw32 sergiodj+buildbot
@ 2017-10-07 4:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-07 4:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1696>
Commit(s) tested:
a1b85d282f408dfd18a27539874846197f7e4044
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix more GDB build breakage on mingw32
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a1/a1b85d282f408dfd18a27539874846197f7e4044/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-06 10:53 [binutils-gdb] Fix GDB build under msys+mingw gcc 32bit sergiodj+buildbot
@ 2017-10-07 2:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-07 2:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1695>
Commit(s) tested:
b79f7801a2c555ee4ff4bc3050141e83158f66d4
Author(s) (in the same order as the commits):
Yuanhui Zhang <asmwarrior@gmail.com>
Subject:
Fix GDB build under msys+mingw gcc 32bit
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b7/b79f7801a2c555ee4ff4bc3050141e83158f66d4/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-06 10:23 [binutils-gdb] Share code updating gdb_target_obs sergiodj+buildbot
@ 2017-10-07 0:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-07 0:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1694>
Commit(s) tested:
d97987e219b80c670e37eb0e25e31b36fa295509
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Share code updating gdb_target_obs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d9/d97987e219b80c670e37eb0e25e31b36fa295509/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-06 7:54 [binutils-gdb] x86: Add VERIFY_COPY_RELOC sergiodj+buildbot
@ 2017-10-06 20:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-06 20:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1691>
Commit(s) tested:
ff38b4cc55dade4c9970cac2149a946d5dc0adc7
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Add VERIFY_COPY_RELOC
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ff/ff38b4cc55dade4c9970cac2149a946d5dc0adc7/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/catch-signal.exp: 1: override SIGINT to catch
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-06 7:44 [binutils-gdb] x86: Add GENERATE_DYNAMIC_RELOCATION_P sergiodj+buildbot
@ 2017-10-06 16:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-06 16:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1688>
Commit(s) tested:
aebcc8ffd201adbee973b414818b01876dabe1a0
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Add GENERATE_DYNAMIC_RELOCATION_P
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ae/aebcc8ffd201adbee973b414818b01876dabe1a0/>
*** Diff to previous build ***
============================
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-06 7:42 [binutils-gdb] x86: Add POINTER_LOCAL_IFUNC_P/PLT_LOCAL_IFUNC_P sergiodj+buildbot
@ 2017-10-06 15:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-06 15:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1687>
Commit(s) tested:
cf1070f1a1ca1f8be1cd88aa6ece55a25e6a887b
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Add POINTER_LOCAL_IFUNC_P/PLT_LOCAL_IFUNC_P
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cf/cf1070f1a1ca1f8be1cd88aa6ece55a25e6a887b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-06 7:30 [binutils-gdb] Add RESOLVED_LOCALLY_P sergiodj+buildbot
@ 2017-10-06 12:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-06 12:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1685>
Commit(s) tested:
2eba97c207399d8b541092a7b0a4428dc02f5cf1
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
Add RESOLVED_LOCALLY_P
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2e/2eba97c207399d8b541092a7b0a4428dc02f5cf1/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-06 7:26 [binutils-gdb] x86: Add NEED_DYNAMIC_RELOCATION_P sergiodj+buildbot
@ 2017-10-06 10:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-06 10:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1684>
Commit(s) tested:
daf1c414a48baf090f005ce4b319b6881d5d6872
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Add NEED_DYNAMIC_RELOCATION_P
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/da/daf1c414a48baf090f005ce4b319b6881d5d6872/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-06 1:11 [binutils-gdb] powerpc: Dump dynamic relocation info to the map file sergiodj+buildbot
@ 2017-10-06 4:08 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-06 4:08 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1682>
Commit(s) tested:
0caf6c82ab23ece570d14499ed02653968cd8abd
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
powerpc: Dump dynamic relocation info to the map file
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/0c/0caf6c82ab23ece570d14499ed02653968cd8abd/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:148
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-05 17:18 [binutils-gdb] Remove unused "union agent_val" from ax.h sergiodj+buildbot
@ 2017-10-06 1:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-06 1:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1680>
Commit(s) tested:
d13b8493cbd2891b5886e6176d468eb63c73606a
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Remove unused "union agent_val" from ax.h
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d1/d13b8493cbd2891b5886e6176d468eb63c73606a/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop: continue &
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=on: continue &
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-05 17:18 [binutils-gdb] Clean up some DFP interfaces sergiodj+buildbot
@ 2017-10-05 23:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-05 23:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1679>
Commit(s) tested:
3b4b2f160d288b85a1379d24fd0f4de19062f3fd
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Clean up some DFP interfaces
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3b/3b4b2f160d288b85a1379d24fd0f4de19062f3fd/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: continue &
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-05 17:18 [binutils-gdb] Clean up includes of doublest.h and floatformat.h sergiodj+buildbot
@ 2017-10-05 22:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-05 22:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1678>
Commit(s) tested:
1841ee5d0300cf00022c8aadfe16725c5e86fe1d
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Clean up includes of doublest.h and floatformat.h
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/18/1841ee5d0300cf00022c8aadfe16725c5e86fe1d/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-thread_db.exp: continue to end
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-05 17:00 [binutils-gdb] Handle the NT_ARM_VFP core dump note on FreeBSD sergiodj+buildbot
@ 2017-10-05 20:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-05 20:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1676>
Commit(s) tested:
6d5be5d6b8b4412e65bc037472aa2e727c25ccf5
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Handle the NT_ARM_VFP core dump note on FreeBSD.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6d/6d5be5d6b8b4412e65bc037472aa2e727c25ccf5/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: continue &
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-05 17:00 [binutils-gdb] Handle FreeBSD-specific AT_EHDRFLAGS and AT_HWCAP auxiliary vector types sergiodj+buildbot
@ 2017-10-05 18:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-05 18:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1675>
Commit(s) tested:
12c4bd7f53e9cefcf7c3a7f8cbf9e552526cb963
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Handle FreeBSD-specific AT_EHDRFLAGS and AT_HWCAP auxiliary vector types.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/12/12c4bd7f53e9cefcf7c3a7f8cbf9e552526cb963/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop: continue &
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-05 13:02 [binutils-gdb] tile: Dump dynamic relocation info to the map file sergiodj+buildbot
@ 2017-10-05 14:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-05 14: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/1674>
Commit(s) tested:
007873f54e41eaef2f7a89b8adbb63a563d98b65
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
tile: Dump dynamic relocation info to the map file
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/00/007873f54e41eaef2f7a89b8adbb63a563d98b65/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: continue &
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: continue &
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-05 4:45 [binutils-gdb] Update my email address sergiodj+buildbot
@ 2017-10-05 5:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-05 5:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1673>
Commit(s) tested:
c91933e9e33654c7b8973cb449b93f5152afcbcb
Author(s) (in the same order as the commits):
Tristan Gingold <tgingold@free.fr>
Subject:
Update my email address.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c9/c91933e9e33654c7b8973cb449b93f5152afcbcb/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=on: continue &
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-05 1:42 [binutils-gdb] bfd_set_input_error sergiodj+buildbot
@ 2017-10-05 3:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-05 3:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1672>
Commit(s) tested:
2ca7de3746be7484aa5affceafa1ad2e1d789381
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
bfd_set_input_error
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2c/2ca7de3746be7484aa5affceafa1ad2e1d789381/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop: continue &
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: continue &
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-05 1:09 [binutils-gdb] bfd_error_on_input is for archives sergiodj+buildbot
@ 2017-10-05 2:24 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-05 2:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1671>
Commit(s) tested:
8c6716e57eb991ba6ceb07011045d626652aaf01
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
bfd_error_on_input is for archives
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8c/8c6716e57eb991ba6ceb07011045d626652aaf01/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: continue
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-04 23:08 [binutils-gdb] PR21167, relocation sections not included in groups sergiodj+buildbot
@ 2017-10-05 0:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-05 0:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1670>
Commit(s) tested:
db4677b8bd90b49f826807352c6c3c7eb0d57814
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR21167, relocation sections not included in groups
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/db/db4677b8bd90b49f826807352c6c3c7eb0d57814/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop: continue &
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: continue &
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-04 17:39 [binutils-gdb] Fix "Remote 'g' packet reply is too long" problems with multiple inferiors sergiodj+buildbot
@ 2017-10-04 21:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-04 21:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1669>
Commit(s) tested:
5cd63fda035d4ba949e6478406162c4673b3c9ef
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix "Remote 'g' packet reply is too long" problems with multiple inferiors
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5c/5cd63fda035d4ba949e6478406162c4673b3c9ef/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/catch-signal-fork.exp: got SIGHUP after fork
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: syscall vfork has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: ENOSYS: program has called 985087
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: ENOSYS: syscall 985087 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 248
new FAIL: gdb.base/fileio.exp: System says shell is not available
PASS -> FAIL: gdb.base/fileio.exp: System says shell is available
PASS -> FAIL: gdb.base/fileio.exp: System
PASS -> FAIL: gdb.base/fileio.exp: System with invalid command returns 127
PASS -> FAIL: gdb.base/fileio.exp: Rename a file
PASS -> FAIL: gdb.base/fileio.exp: Renaming a file to existing directory returns EISDIR
PASS -> FAIL: gdb.base/fileio.exp: renaming a directory to a non-empty directory returns ENOTEMPTY or EEXIST
PASS -> FAIL: gdb.base/fileio.exp: Renaming a directory to a subdir of itself returns EINVAL
PASS -> FAIL: gdb.base/fileio.exp: Renaming a nonexistant file returns ENOENT
PASS -> FAIL: gdb.base/fileio.exp: Unlink a file
PASS -> FAIL: gdb.base/fileio.exp: Unlinking a file in a directory w/o write access returns EACCES
PASS -> FAIL: gdb.base/fileio.exp: Unlinking a nonexistant file returns ENOENT
PASS -> FAIL: gdb.base/fileio.exp: Time
PASS -> FAIL: gdb.base/foll-fork.exp: follow default, detach default, command "next 2": next 2 past fork
PASS -> FAIL: gdb.base/foll-fork.exp: follow default, detach default, command "continue": continue past fork
PASS -> FAIL: gdb.base/foll-fork.exp: follow parent, detach on, command "next 2": next 2 past fork
PASS -> FAIL: gdb.base/foll-fork.exp: follow parent, detach on, command "continue": continue past fork
PASS -> FAIL: gdb.base/foll-fork.exp: set follow-fork parent, hit tbreak
PASS -> FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, through step: step
PASS -> FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, to bp: continue to bp
PASS -> FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, finish after tcatch vfork: finish
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, through step: step
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, to bp: continue to bp
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, finish after tcatch vfork: finish
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop: info threads
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=on: continue &
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=on: info threads
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: info threads
PASS -> FAIL: gdb.base/multi-forks.exp: follow parent, print pids
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: continue to fork
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: find syscall insn in fork
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: stepi fork insn
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: break on syscall insn
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: continue to syscall insn fork
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: single step over fork
PASS -> FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
PASS -> FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: find syscall insn in vfork
PASS -> FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: stepi vfork insn
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: break on syscall insn
PASS -> FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
PASS -> FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: reverse to marker1
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: inferior 1 exited
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: continue &
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: no threads left
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-04 17:39 [binutils-gdb] Redesign mock environment for gdbarch selftests sergiodj+buildbot
@ 2017-10-04 19:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-04 19:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1667>
Commit(s) tested:
55b11ddf16b97b9c50ed480bc9da8b3e1c6c4198
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Redesign mock environment for gdbarch selftests
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/55/55b11ddf16b97b9c50ed480bc9da8b3e1c6c4198/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-04 16:48 [binutils-gdb] Fix -list-thread-groups --available logic and add test sergiodj+buildbot
@ 2017-10-04 17:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-04 17:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1666>
Commit(s) tested:
4c71c1059f876fcca9809f7b6372b721ddb83635
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Fix -list-thread-groups --available logic and add test
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4c/4c71c1059f876fcca9809f7b6372b721ddb83635/>
*** Diff to previous build ***
============================
new FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
new FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups with filter
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-04 12:21 [binutils-gdb] Move code out of 'between TRY and CATCH' sergiodj+buildbot
@ 2017-10-04 13:24 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-04 13:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1665>
Commit(s) tested:
73dcd72d4eeec176f769660ddcdefd1f25d0a2ec
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Move code out of 'between TRY and CATCH'
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/73/73dcd72d4eeec176f769660ddcdefd1f25d0a2ec/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-04 10:25 [binutils-gdb] Add missing-END_CATCH detection/protection (to gdb's TRY/CATCH/END_CATCH) sergiodj+buildbot
@ 2017-10-04 12:13 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-04 12:13 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1664>
Commit(s) tested:
a87c142792e4dcbec2bb3825e71f3ace044c2096
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add missing-END_CATCH detection/protection (to gdb's TRY/CATCH/END_CATCH)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a8/a87c142792e4dcbec2bb3825e71f3ace044c2096/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-04 7:08 [binutils-gdb] Extend "set cwd" to work on gdbserver sergiodj+buildbot
@ 2017-10-04 10:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-04 10:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1663>
Commit(s) tested:
bc3b087de2401c65c02730d346e8bea4dc0504ae
Author(s) (in the same order as the commits):
Sergio Durigan Junior <sergiodj@redhat.com>
Subject:
Extend "set cwd" to work on gdbserver
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bc/bc3b087de2401c65c02730d346e8bea4dc0504ae/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-04 4:18 [binutils-gdb] PR22245, Fix potential UB in bfd_set_error sergiodj+buildbot
@ 2017-10-04 5:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-04 5:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1659>
Commit(s) tested:
9ba5f27cdd15d22d6c5739ff5d2b1c81d796e114
Author(s) (in the same order as the commits):
Pavel I. Kryukov <kryukov@frtk.ru>
Subject:
PR22245, Fix potential UB in bfd_set_error
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9b/9ba5f27cdd15d22d6c5739ff5d2b1c81d796e114/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-03 23:08 [binutils-gdb] gdbarch: Remove duplicate `struct objfile' declaration sergiodj+buildbot
@ 2017-10-04 0:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-04 0:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1658>
Commit(s) tested:
db8dd1601ee4d0629957bcc8b4156d65f42a218d
Author(s) (in the same order as the commits):
Maciej W. Rozycki <macro@imgtec.com>
Subject:
gdbarch: Remove duplicate `struct objfile' declaration
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/db/db8dd1601ee4d0629957bcc8b4156d65f42a218d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-03 21:48 [binutils-gdb] Update my email address sergiodj+buildbot
@ 2017-10-03 22:54 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-03 22:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1657>
Commit(s) tested:
c0107b0f57bc958b640dabafd4c6c618ea023397
Author(s) (in the same order as the commits):
Jim Wilson <jim.wilson@linaro.org>
Subject:
Update my email address.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c0/c0107b0f57bc958b640dabafd4c6c618ea023397/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.reverse/insn-reverse.exp: ext_reg_mov: compare registers on insn 11:ldr r2, [r7, #4]
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-02 21:46 [binutils-gdb] Fix &str printing in Rust sergiodj+buildbot
@ 2017-10-03 14:52 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-03 14:52 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1647>
Commit(s) tested:
45320ffa0450b27e232d933d2a1c6a09d94ac18b
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Fix &str printing in Rust
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/45/45320ffa0450b27e232d933d2a1c6a09d94ac18b/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-02 21:04 [binutils-gdb] Fix ptype of Rust slices sergiodj+buildbot
@ 2017-10-03 13:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-03 13:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1646>
Commit(s) tested:
b3e3859bc577db5b79bb3d39048fd46c0a0420ef
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Fix ptype of Rust slices
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b3/b3e3859bc577db5b79bb3d39048fd46c0a0420ef/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-02 20:33 [binutils-gdb] Allow indexing of &str in Rust sergiodj+buildbot
@ 2017-10-03 12:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-03 12:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1645>
Commit(s) tested:
01af5e0d09ac9c621e7b280f44a2c7ef55784493
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Allow indexing of &str in Rust
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/01/01af5e0d09ac9c621e7b280f44a2c7ef55784493/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-02 9:57 [binutils-gdb] Fix GDB build with G++ 4.8 sergiodj+buildbot
@ 2017-10-03 9:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-03 9:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1643>
Commit(s) tested:
cc536b21677586455973f81ee05257ada8efdcb8
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Fix GDB build with G++ 4.8
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cc/cc536b21677586455973f81ee05257ada8efdcb8/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: finish after stop in call dummy preserves register contents
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-10-01 2:06 [binutils-gdb] Use std::set in mi-main.c sergiodj+buildbot
@ 2017-10-03 0:06 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-03 0:06 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1633>
Commit(s) tested:
52f9abe4c739f42cc5f80b2629276493ac6306f9
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Use std::set in mi-main.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/52/52f9abe4c739f42cc5f80b2629276493ac6306f9/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-30 14:16 [binutils-gdb] Don't copy a string in mi_cmd_disassemble sergiodj+buildbot
@ 2017-10-02 18:03 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-02 18:03 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1629>
Commit(s) tested:
9813429a729dbcd761dfbb02d2d7a3449af0881d
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Don't copy a string in mi_cmd_disassemble
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/98/9813429a729dbcd761dfbb02d2d7a3449af0881d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-30 11:26 [binutils-gdb] Remove cleanups from mi_cmd_break_insert_1 sergiodj+buildbot
@ 2017-10-02 15:26 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-02 15:26 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1627>
Commit(s) tested:
784c453a4f1aeee237203dd6257a6ed24bee28c3
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanups from mi_cmd_break_insert_1
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/78/784c453a4f1aeee237203dd6257a6ed24bee28c3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-30 10:20 [binutils-gdb] Remove make_cleanup_defer_target_commit_resume sergiodj+buildbot
@ 2017-10-02 13:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-02 13:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1626>
Commit(s) tested:
a9bc57b97840a874ad2802e29a44fbf557668808
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove make_cleanup_defer_target_commit_resume
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a9/a9bc57b97840a874ad2802e29a44fbf557668808/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
[not found] <9754d8c4c48209eaefb044d03dc25f14dca8a263@gdb-build>
@ 2017-10-02 12:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-02 12:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1625>
Commit(s) tested:
9754d8c4c48209eaefb044d03dc25f14dca8a263
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove some unused declarations
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/97/9754d8c4c48209eaefb044d03dc25f14dca8a263/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-30 8:37 [binutils-gdb] Remove cleanup from mt-tdep.c sergiodj+buildbot
@ 2017-10-02 8:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-02 8:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1623>
Commit(s) tested:
42518ba746b5b6cb7c169a55430e73551be345f5
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanup from mt-tdep.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/42/42518ba746b5b6cb7c169a55430e73551be345f5/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
[not found] <8abcee91738bf0be98e949049c559839ef811ae4@gdb-build>
@ 2017-10-02 5:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-02 5:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1620>
Commit(s) tested:
8abcee91738bf0be98e949049c559839ef811ae4
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove some cleanups from tracepoint.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8a/8abcee91738bf0be98e949049c559839ef811ae4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-30 7:10 [binutils-gdb] Remove some cleanups from stack.c sergiodj+buildbot
@ 2017-10-02 2:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-02 2:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1618>
Commit(s) tested:
2003f3d839fa887811ff65380191e0beaeff719e
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove some cleanups from stack.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/20/2003f3d839fa887811ff65380191e0beaeff719e/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: continue after stop in call dummy preserves register contents
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-30 6:22 [binutils-gdb] Remove cleanup from tilegx-tdep.c sergiodj+buildbot
@ 2017-10-02 1:45 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-10-02 1:45 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1617>
Commit(s) tested:
8f8accb58078b1f249dc6865b8784a0a8e8881dd
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove cleanup from tilegx-tdep.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8f/8f8accb58078b1f249dc6865b8784a0a8e8881dd/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-28 1:36 [binutils-gdb] Constify commands in cli-dump.c sergiodj+buildbot
@ 2017-09-28 18:46 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-28 18:46 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1555>
Commit(s) tested:
2d0ac1068babfe8800607b17ddb2f31189bdb334
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify commands in cli-dump.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/2d/2d0ac1068babfe8800607b17ddb2f31189bdb334/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-28 1:33 [binutils-gdb] Constify some commands in cli-cmds.c sergiodj+buildbot
@ 2017-09-28 17:10 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-28 17:10 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1554>
Commit(s) tested:
dede02ce4d2267d044db41a0896af4d670647a04
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify some commands in cli-cmds.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/de/dede02ce4d2267d044db41a0896af4d670647a04/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-28 0:29 [binutils-gdb] Constify cmd_record_full_restore sergiodj+buildbot
@ 2017-09-28 13:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-28 13:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1551>
Commit(s) tested:
41243651350688a9a0f3a3542871d37e7f3c5f20
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify cmd_record_full_restore
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/41/41243651350688a9a0f3a3542871d37e7f3c5f20/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/callfuncs.exp: noproto: finish after stop in call dummy preserves register contents
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-27 23:15 [binutils-gdb] Constify show_convenience sergiodj+buildbot
@ 2017-09-28 10:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-28 10:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1549>
Commit(s) tested:
ad25e4234a3f370a693b9c392c5b54216aab4592
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify show_convenience
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ad/ad25e4234a3f370a693b9c392c5b54216aab4592/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-28 2:14 [binutils-gdb] Constify core_file_command sergiodj+buildbot
@ 2017-09-28 9:27 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-28 9:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1548>
Commit(s) tested:
d64097b17c88ae18781ecce59d1b265b41e9551a
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify core_file_command
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d6/d64097b17c88ae18781ecce59d1b265b41e9551a/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.reverse/insn-reverse.exp: ext_reg_mov: compare registers on insn 9:str r3, [r7, #4]
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-27 21:51 [binutils-gdb] Constify maintenance_print_user_registers sergiodj+buildbot
@ 2017-09-28 8:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-28 8:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1547>
Commit(s) tested:
4d4589ef76b975eead8da6bfa65db4a9dc85089a
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify maintenance_print_user_registers
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4d/4d4589ef76b975eead8da6bfa65db4a9dc85089a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-27 20:54 [binutils-gdb] Constify maintenance_cplus_namespace sergiodj+buildbot
@ 2017-09-28 6:58 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-28 6:58 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1546>
Commit(s) tested:
32a7bf17c94a81c08535ea045f43fe8c8271d3fd
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify maintenance_cplus_namespace
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/32/32a7bf17c94a81c08535ea045f43fe8c8271d3fd/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-27 22:06 [binutils-gdb] Constify display_tib sergiodj+buildbot
@ 2017-09-28 3:01 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-28 3:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1543>
Commit(s) tested:
c281872eec33c92db0565afdbfdee91558e5d8e0
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify display_tib
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c2/c281872eec33c92db0565afdbfdee91558e5d8e0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-27 18:28 [binutils-gdb] Constify dump_arc_instruction_command sergiodj+buildbot
@ 2017-09-27 23:09 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-27 23:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1540>
Commit(s) tested:
57f5a81bd240459edbdac1628800291e7535ed02
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify dump_arc_instruction_command
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/57/57f5a81bd240459edbdac1628800291e7535ed02/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-27 19:37 [binutils-gdb] Constify two functions in valprint.c sergiodj+buildbot
@ 2017-09-27 21:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-27 21:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1539>
Commit(s) tested:
b0a8e6c4431a2e762dac88f3d73efca4bc47c90a
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify two functions in valprint.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b0/b0a8e6c4431a2e762dac88f3d73efca4bc47c90a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-27 16:46 [binutils-gdb] Constify add_cmd gdb_bfd.c sergiodj+buildbot
@ 2017-09-27 17:22 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-27 17:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1536>
Commit(s) tested:
e4e3333549c96d2915bb888b7b347566c938e75a
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Constify add_cmd gdb_bfd.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e4/e4e3333549c96d2915bb888b7b347566c938e75a/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/non-stop-fair-events.exp: signal_thread=10: thread 11 broke out of loop
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-27 15:48 [binutils-gdb] Add add_cmd function overloads sergiodj+buildbot
@ 2017-09-27 16:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-27 16:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1535>
Commit(s) tested:
0450cc4ce8b4775c47e9aaa1c5a34e181b10ae98
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Add add_cmd function overloads
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/04/0450cc4ce8b4775c47e9aaa1c5a34e181b10ae98/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-26 22:02 [binutils-gdb] x86-64: Don't pass output_bfd to info->callbacks->minfo sergiodj+buildbot
@ 2017-09-27 6:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-27 6:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1532>
Commit(s) tested:
ac69a0d75bf472a140e5405c8a90420d5f63a998
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86-64: Don't pass output_bfd to info->callbacks->minfo
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ac/ac69a0d75bf472a140e5405c8a90420d5f63a998/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-26 18:56 [binutils-gdb] dwarf2read: Restrict ICC workaround to ICC<14 sergiodj+buildbot
@ 2017-09-27 4:15 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-27 4:15 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1531>
Commit(s) tested:
5230b05a94b964da335a0758686b92a8efcc823d
Author(s) (in the same order as the commits):
Walfred Tedeschi <walfred.tedeschi@intel.com>
Subject:
dwarf2read: Restrict ICC workaround to ICC<14
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/52/5230b05a94b964da335a0758686b92a8efcc823d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-26 17:59 [binutils-gdb] Use "switch_to_thread" more thoroughly on gdbserver sergiodj+buildbot
@ 2017-09-26 23:44 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-26 23:44 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1529>
Commit(s) tested:
75352e283fb2b265d14c750859156943f6eb2693
Author(s) (in the same order as the commits):
Sergio Durigan Junior <sergiodj@redhat.com>
Subject:
Use "switch_to_thread" more thoroughly on gdbserver
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/75/75352e283fb2b265d14c750859156943f6eb2693/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-26 17:12 [binutils-gdb] Allow linking GDB with ncursesw sergiodj+buildbot
@ 2017-09-26 22:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-26 22:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1528>
Commit(s) tested:
5007d765ae09c10c7f3b18bb16841b9d2d59e181
Author(s) (in the same order as the commits):
Matthias Klose <doko@ubuntu.com>
Subject:
Allow linking GDB with ncursesw
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/50/5007d765ae09c10c7f3b18bb16841b9d2d59e181/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-26 16:23 [binutils-gdb] Fix an assertion failure when parsing a fuzzed x86_64 ELF binary sergiodj+buildbot
@ 2017-09-26 22:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-26 22:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1527>
Commit(s) tested:
262c0a877f91b9102fd42523598b46ea79a8970e
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Fix an assertion failure when parsing a fuzzed x86_64 ELF binary.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/26/262c0a877f91b9102fd42523598b46ea79a8970e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-26 16:00 [binutils-gdb] Tidy reading data in read_formatted_entries sergiodj+buildbot
@ 2017-09-26 19:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-26 19:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1526>
Commit(s) tested:
33e0a9a056bd23e923b929a4f2ab049ade0b1c32
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
Tidy reading data in read_formatted_entries
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/33/33e0a9a056bd23e923b929a4f2ab049ade0b1c32/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-26 15:21 [binutils-gdb] Avoid needless resource usage when processing a corrupt DWARF directory or file name table sergiodj+buildbot
@ 2017-09-26 18:24 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-26 18:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1525>
Commit(s) tested:
30d0157a2ad64e64e5ff9fcc0dbe78a3e682f573
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Avoid needless resource usage when processing a corrupt DWARF directory or file name table.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/30/30d0157a2ad64e64e5ff9fcc0dbe78a3e682f573/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-26 14:35 [binutils-gdb] Remove support for Solaris < 10 (PR gdb/22185) sergiodj+buildbot
@ 2017-09-26 16:20 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-26 16:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1524>
Commit(s) tested:
281c4447738409888d9659924937da182a65b4e1
Author(s) (in the same order as the commits):
Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
Subject:
Remove support for Solaris < 10 (PR gdb/22185)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/28/281c4447738409888d9659924937da182a65b4e1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-26 13:13 [binutils-gdb] PR22209, invalid memory read in find_abstract_instance_name sergiodj+buildbot
@ 2017-09-26 13:36 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-26 13:36 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1522>
Commit(s) tested:
1b86808a86077722ee4f42ff97f836b12420bb2a
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22209, invalid memory read in find_abstract_instance_name
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1b/1b86808a86077722ee4f42ff97f836b12420bb2a/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-26 2:45 [binutils-gdb] Remove make_cleanup_regcache_xfree sergiodj+buildbot
@ 2017-09-26 4:32 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-26 4:32 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1517>
Commit(s) tested:
9ac86b52da268147b2565e4920357432bb7a34c3
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Remove make_cleanup_regcache_xfree
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/9a/9ac86b52da268147b2565e4920357432bb7a34c3/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-26 0:40 [binutils-gdb] PR22204, Lack of DW_LNE_end_sequence causes "infinite" loop sergiodj+buildbot
@ 2017-09-26 0:55 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-26 0:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1513>
Commit(s) tested:
e338894dc2e603683bed2172e8e9f25b29051005
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22204, Lack of DW_LNE_end_sequence causes "infinite" loop
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e3/e338894dc2e603683bed2172e8e9f25b29051005/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-25 17:51 [binutils-gdb] S390: Document guarded-storage register support sergiodj+buildbot
@ 2017-09-26 0:37 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-26 0:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1512>
Commit(s) tested:
289e23aa03084b22c73ebdcf18371f1e6666ead0
Author(s) (in the same order as the commits):
Andreas Arnez <arnez@linux.vnet.ibm.com>
Subject:
S390: Document guarded-storage register support
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/28/289e23aa03084b22c73ebdcf18371f1e6666ead0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-25 17:02 [binutils-gdb] S390: Add guarded-storage register support to gdbserver sergiodj+buildbot
@ 2017-09-25 22:48 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-25 22:48 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1511>
Commit(s) tested:
ad3396348e0ebb61fdf71cff307bac08175ed366
Author(s) (in the same order as the commits):
Andreas Arnez <arnez@linux.vnet.ibm.com>
Subject:
S390: Add guarded-storage register support to gdbserver
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ad/ad3396348e0ebb61fdf71cff307bac08175ed366/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-25 16:24 [binutils-gdb] S390: Add guarded-storage register support to GDB sergiodj+buildbot
@ 2017-09-25 21:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-25 21:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1510>
Commit(s) tested:
1b63490c9173f8c9770b7885def720516aa9b9f8
Author(s) (in the same order as the commits):
Andreas Arnez <arnez@linux.vnet.ibm.com>
Subject:
S390: Add guarded-storage register support to GDB
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1b/1b63490c9173f8c9770b7885def720516aa9b9f8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-25 15:04 [binutils-gdb] PR22202, buffer overflow in parse_die sergiodj+buildbot
@ 2017-09-25 16:59 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-25 16:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1508>
Commit(s) tested:
1da5c9a485f3dcac4c45e96ef4b7dae5948314b5
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22202, buffer overflow in parse_die
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1d/1da5c9a485f3dcac4c45e96ef4b7dae5948314b5/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-25 14:14 [binutils-gdb] PR22201, DW_AT_name with out of bounds reference sergiodj+buildbot
@ 2017-09-25 15:19 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-25 15:19 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1507>
Commit(s) tested:
11855d8a1f11b102a702ab76e95b22082cccf2f8
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22201, DW_AT_name with out of bounds reference
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/11/11855d8a1f11b102a702ab76e95b22082cccf2f8/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-25 13:52 [binutils-gdb] PR22200, DWARF5 .debug_line sanity check sergiodj+buildbot
@ 2017-09-25 14:08 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-25 14:08 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1506>
Commit(s) tested:
c361faae8d964db951b7100cada4dcdc983df1bf
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22200, DWARF5 .debug_line sanity check
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c3/c361faae8d964db951b7100cada4dcdc983df1bf/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: continue
new FAIL: gdb.threads/sigstep-threads.exp: step 21
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-25 6:17 [binutils-gdb] Initialize 'imm' on opcodes/aarch64-opc.c:expand_fp_imm (and fix breakage on mingw) sergiodj+buildbot
@ 2017-09-25 6:34 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-25 6:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1505>
Commit(s) tested:
57a024f4650d7562e963efb6b00c4a4cd74185c4
Author(s) (in the same order as the commits):
Sergio Durigan Junior <sergiodj@redhat.com>
Subject:
Initialize 'imm' on opcodes/aarch64-opc.c:expand_fp_imm (and fix breakage on mingw)
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/57/57a024f4650d7562e963efb6b00c4a4cd74185c4/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-24 12:59 [binutils-gdb] PR22197, buffer overflow in bfd_get_debug_link_info_1 sergiodj+buildbot
@ 2017-09-24 19:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-24 19:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1504>
Commit(s) tested:
52b36c51e5bf6d7600fdc6ba115b170b0e78e31d
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22197, buffer overflow in bfd_get_debug_link_info_1
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/52/52b36c51e5bf6d7600fdc6ba115b170b0e78e31d/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/new-ui.exp: do_test: delete all breakpoints on extra console
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-24 12:42 [binutils-gdb] PR22191, memory leak in dwarf2.c sergiodj+buildbot
@ 2017-09-24 17:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-24 17:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1503>
Commit(s) tested:
a26a013f22a19e2c16729e64f40ef8a7dfcc086e
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22191, memory leak in dwarf2.c
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/a2/a26a013f22a19e2c16729e64f40ef8a7dfcc086e/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-24 8:28 [binutils-gdb] PR22186, divide-by-zero in decode_line_info sergiodj+buildbot
@ 2017-09-24 11:39 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-24 11:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1500>
Commit(s) tested:
d8010d3e75ec7194a4703774090b27486b742d48
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22186, divide-by-zero in decode_line_info
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/d8/d8010d3e75ec7194a4703774090b27486b742d48/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-24 8:08 [binutils-gdb] PR22169, heap-based buffer overflow in read_1_byte sergiodj+buildbot
@ 2017-09-24 10:00 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-24 10:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1499>
Commit(s) tested:
515f23e63c0074ab531bc954f84ca40c6281a724
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22169, heap-based buffer overflow in read_1_byte
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/51/515f23e63c0074ab531bc954f84ca40c6281a724/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-24 7:15 [binutils-gdb] PR22166, SHT_GNU_verneed memory allocation sergiodj+buildbot
@ 2017-09-24 7:31 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-24 7:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1497>
Commit(s) tested:
bd61e135492ecf624880e6b78e5fcde3c9716df6
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22166, SHT_GNU_verneed memory allocation
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bd/bd61e135492ecf624880e6b78e5fcde3c9716df6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-23 21:05 [binutils-gdb] Removed unused declaration sergiodj+buildbot
@ 2017-09-23 21:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-23 21:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1496>
Commit(s) tested:
b4a7c699688bd88313893cbb59ee0df5b8cd009b
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Removed unused declaration
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b4/b4a7c699688bd88313893cbb59ee0df5b8cd009b/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-22 22:17 [binutils-gdb] Change type of scoped_input_handler::m_quit_handler sergiodj+buildbot
@ 2017-09-23 2:06 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-23 2:06 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1495>
Commit(s) tested:
c2f97536b77f9d9531a1a2c37008b454eb67a82e
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Change type of scoped_input_handler::m_quit_handler
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c2/c2f97536b77f9d9531a1a2c37008b454eb67a82e/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/starti.exp: continue
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-22 21:41 [binutils-gdb] x86: Guard against corrupted PLT sergiodj+buildbot
@ 2017-09-22 23:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-22 23:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1494>
Commit(s) tested:
61e3bf5f83f7e505b6bc51ef65426e5b31e6e360
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Guard against corrupted PLT
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/61/61e3bf5f83f7e505b6bc51ef65426e5b31e6e360/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-22 18:25 [binutils-gdb] Get rid of "gdb_dirbuf" and use "getcwd (NULL, 0)" sergiodj+buildbot
@ 2017-09-22 20:51 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-22 20:51 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1492>
Commit(s) tested:
43573013c9836f2b91b74b9b29dac35fdb41e06b
Author(s) (in the same order as the commits):
Sergio Durigan Junior <sergiodj@redhat.com>
Subject:
Get rid of "gdb_dirbuf" and use "getcwd (NULL, 0)"
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/43/43573013c9836f2b91b74b9b29dac35fdb41e06b/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:93
new FAIL: gdb.threads/sigstep-threads.exp: continue
new FAIL: gdb.threads/sigstep-threads.exp: step 25
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-22 15:58 [binutils-gdb] gdbserver x86 on win32: call init_target_desc sergiodj+buildbot
@ 2017-09-22 18:12 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-22 18:12 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1490>
Commit(s) tested:
cc4d742f4ce05bf933397a513b953c0feeae0663
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
gdbserver x86 on win32: call init_target_desc
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/cc/cc4d742f4ce05bf933397a513b953c0feeae0663/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-22 15:29 [binutils-gdb] x86: Return -1 if bfd_canonicalize_dynamic_reloc returns 0 sergiodj+buildbot
@ 2017-09-22 17:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-22 17:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1489>
Commit(s) tested:
b69e9267d15a09ce3f3d4599eae2952dfc6df502
Author(s) (in the same order as the commits):
H.J. Lu <hjl.tools@gmail.com>
Subject:
x86: Return -1 if bfd_canonicalize_dynamic_reloc returns 0
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/b6/b69e9267d15a09ce3f3d4599eae2952dfc6df502/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-22 14:18 [binutils-gdb] Fix sometimes-uninitialized warning in gdbscm_value_address sergiodj+buildbot
@ 2017-09-22 14:38 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-22 14:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1487>
Commit(s) tested:
432ae719d35c81324e01ae6bd9970cc43e69fa5e
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Fix sometimes-uninitialized warning in gdbscm_value_address
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/43/432ae719d35c81324e01ae6bd9970cc43e69fa5e/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/starti.exp: continue
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-21 20:48 [binutils-gdb] Test case for Inferior.thread_from_thread_handle sergiodj+buildbot
@ 2017-09-22 4:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-22 4:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1485>
Commit(s) tested:
757bf54bb48a8417154cfdd7128c1775d43478d8
Author(s) (in the same order as the commits):
Kevin Buettner <kevinb@redhat.com>
Subject:
Test case for Inferior.thread_from_thread_handle
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/75/757bf54bb48a8417154cfdd7128c1775d43478d8/>
*** Diff to previous build ***
============================
new FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[0]
new FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[1]
new FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[2]
new FAIL: gdb.python/py-thrhandle.exp: print thread for bogus handle thrs[3]
new FAIL: gdb.python/py-thrhandle.exp: print thread for bogus handle thrs[4]
new FAIL: gdb.python/py-thrhandle.exp: TypeError when passing a symbol object to thread_from_thread_handle
new FAIL: gdb.python/py-thrhandle.exp: Pass overly large object to thread_from_thread_handle
new FAIL: gdb.python/py-thrhandle.exp: Pass too small of an object to thread_from_thread_handle
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-21 20:24 [binutils-gdb] Add thread_handle_to_thread_info support for remote targets sergiodj+buildbot
@ 2017-09-22 0:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-22 0:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1484>
Commit(s) tested:
f6327dcbf0bc91bb9d99e12232d2b1a2f959fce6
Author(s) (in the same order as the commits):
Kevin Buettner <kevinb@redhat.com>
Subject:
Add thread_handle_to_thread_info support for remote targets
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f6/f6327dcbf0bc91bb9d99e12232d2b1a2f959fce6/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: 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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-21 20:08 [binutils-gdb] Add thread_db_notice_clone to gdbserver sergiodj+buildbot
@ 2017-09-21 22:06 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-21 22:06 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1483>
Commit(s) tested:
8629910955a751a93f2f12389ff1f497556cc260
Author(s) (in the same order as the commits):
Kevin Buettner <kevinb@redhat.com>
Subject:
Add thread_db_notice_clone to gdbserver
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/86/8629910955a751a93f2f12389ff1f497556cc260/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-21 19:14 [binutils-gdb] Add target method for converting thread handle to thread_info struct pointer sergiodj+buildbot
@ 2017-09-21 19:35 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-21 19:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1481>
Commit(s) tested:
e04ee09e24563f013c35cdebd7e9de3092b99b83
Author(s) (in the same order as the commits):
Kevin Buettner <kevinb@redhat.com>
Subject:
Add target method for converting thread handle to thread_info struct pointer
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e0/e04ee09e24563f013c35cdebd7e9de3092b99b83/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=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 ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-21 16:21 [binutils-gdb] S/390: Fix Elf note swap s390_gs_bc vs. s390_gs_cb sergiodj+buildbot
@ 2017-09-21 16:40 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-21 16:40 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1479>
Commit(s) tested:
8fe09d7421db51bc13c9228547d63e6315bd6bd0
Author(s) (in the same order as the commits):
Andreas Arnez <arnez@linux.vnet.ibm.com>
Subject:
S/390: Fix Elf note swap s390_gs_bc vs. s390_gs_cb
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8f/8fe09d7421db51bc13c9228547d63e6315bd6bd0/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-21 13:51 [binutils-gdb] linux-waitpid: Get rid of format string warning sergiodj+buildbot
@ 2017-09-21 16:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-21 16:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1478>
Commit(s) tested:
1e5b66ed4285ecf063e7801a46178ebb0ce5be41
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
linux-waitpid: Get rid of format string warning
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/1e/1e5b66ed4285ecf063e7801a46178ebb0ce5be41/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-21 12:52 [binutils-gdb] microblaze-tdep: Add ATTRIBUTE_PRINTF to microblaze_debug sergiodj+buildbot
@ 2017-09-21 13:11 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-21 13:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1477>
Commit(s) tested:
ebe48ba0856dcccaa7a60d873c61e6f1f96f5887
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
microblaze-tdep: Add ATTRIBUTE_PRINTF to microblaze_debug
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/eb/ebe48ba0856dcccaa7a60d873c61e6f1f96f5887/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:201
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-21 8:31 [binutils-gdb] [SIM, ARM] Fix build failure sergiodj+buildbot
@ 2017-09-21 9:10 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-21 9:10 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1475>
Commit(s) tested:
88240b186d224d634633d9996832f1235364b6d4
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
[SIM, ARM] Fix build failure
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/88/88240b186d224d634633d9996832f1235364b6d4/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/starti.exp: continue
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-21 5:09 [binutils-gdb] Allocate bpstats with new sergiodj+buildbot
@ 2017-09-21 5:17 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-21 5:17 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1472>
Commit(s) tested:
04afa70c8e1c931dd44db76eb9f0ddd4949ed00c
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Allocate bpstats with new
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/04/04afa70c8e1c931dd44db76eb9f0ddd4949ed00c/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-21 0:06 [binutils-gdb] eval.c:evaluate_subexp_standard: Use RAII to avoid leaks sergiodj+buildbot
@ 2017-09-21 4:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-21 4:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1471>
Commit(s) tested:
c83833f49353e1fe7fa727291210be751161ade1
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
eval.c:evaluate_subexp_standard: Use RAII to avoid leaks
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c8/c83833f49353e1fe7fa727291210be751161ade1/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-20 22:31 [binutils-gdb] Overload catch_command_errors sergiodj+buildbot
@ 2017-09-20 22:56 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-20 22:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1469>
Commit(s) tested:
013af3fc8eba48d081f0e83303cd800097e5b7a8
Author(s) (in the same order as the commits):
Tom Tromey <tom@tromey.com>
Subject:
Overload catch_command_errors
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/01/013af3fc8eba48d081f0e83303cd800097e5b7a8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-20 14:10 [binutils-gdb] gdb - avx512: tests were failing due to missing memory aligment sergiodj+buildbot
@ 2017-09-20 14:21 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-20 14:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1465>
Commit(s) tested:
6470a84860b11ba6e7258604ae78f047a1af2f5d
Author(s) (in the same order as the commits):
Walfred Tedeschi <walfred.tedeschi@intel.com>
Subject:
gdb - avx512: tests were failing due to missing memory aligment.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/64/6470a84860b11ba6e7258604ae78f047a1af2f5d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-19 19:46 [binutils-gdb] Add a 'starti' command sergiodj+buildbot
@ 2017-09-19 20:18 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-19 20:18 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1464>
Commit(s) tested:
4e5a4f5850487740eb7549f1d0b8625ce577faab
Author(s) (in the same order as the commits):
John Baldwin <jhb@FreeBSD.org>
Subject:
Add a 'starti' command.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/4e/4e5a4f5850487740eb7549f1d0b8625ce577faab/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/starti.exp: continue
PASS -> FAIL: gdb.reverse/insn-reverse.exp: ext_reg_mov: compare registers on insn 10:ldr r3, [r7, #0]
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-19 5:56 [binutils-gdb] PR22150, ld keeps a version reference for gc'd symbols sergiodj+buildbot
@ 2017-09-19 6:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-19 6:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1460>
Commit(s) tested:
3d13f3e9bda5aada68915f5d958f731ae79ed41d
Author(s) (in the same order as the commits):
Alan Modra <amodra@gmail.com>
Subject:
PR22150, ld keeps a version reference for gc'd symbols
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/3d/3d13f3e9bda5aada68915f5d958f731ae79ed41d/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-16 14:26 [binutils-gdb] Refactor handle_qxfer_libraries and friends to use std::string sergiodj+buildbot
@ 2017-09-17 4:23 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-17 4:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1456>
Commit(s) tested:
04fd3ba9b63936653fff2b1657b3824c94a8efd6
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Refactor handle_qxfer_libraries and friends to use std::string
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/04/04fd3ba9b63936653fff2b1657b3824c94a8efd6/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-16 14:50 [binutils-gdb] Make xml_escape_text return an std::string sergiodj+buildbot
@ 2017-09-16 17:49 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-16 17:49 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1455>
Commit(s) tested:
5e1875543df7413d3cbc3831390445e347064b75
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Make xml_escape_text return an std::string
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/5e/5e1875543df7413d3cbc3831390445e347064b75/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=1: wait for stops
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-16 13:24 [binutils-gdb] Add unit test for xml_escape_text sergiodj+buildbot
@ 2017-09-16 16:14 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-16 16: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/1454>
Commit(s) tested:
c3d7b541fa920e6ecb0f06ffe1e0e3f070fa295d
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Add unit test for xml_escape_text
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/c3/c3d7b541fa920e6ecb0f06ffe1e0e3f070fa295d/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
new FAIL: gdb.threads/queue-signal.exp: determine thread functions
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-16 13:01 [binutils-gdb] Add selftests run filtering sergiodj+buildbot
@ 2017-09-16 14:50 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-16 14:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1453>
Commit(s) tested:
1526853e34c063bef25bd7d0eb15c1449c28e999
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Add selftests run filtering
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/15/1526853e34c063bef25bd7d0eb15c1449c28e999/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-16 12:13 [binutils-gdb] mi_load_progress: Use unique_ptr to manage ui_out lifetime sergiodj+buildbot
@ 2017-09-16 12:29 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-16 12:29 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1451>
Commit(s) tested:
bd77e8ff276864d6622f2433b8a499bf4332fa65
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
mi_load_progress: Use unique_ptr to manage ui_out lifetime
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/bd/bd77e8ff276864d6622f2433b8a499bf4332fa65/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/longjmp.exp: next over patt3
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-15 19:36 [binutils-gdb] Sync libiberty/ & include/ with GCC sergiodj+buildbot
@ 2017-09-16 2:42 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-16 2:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1449>
Commit(s) tested:
26a67918a501370a8fe62db18a74761a0073016f
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Sync libiberty/ & include/ with GCC
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/26/26a67918a501370a8fe62db18a74761a0073016f/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-15 18:45 [binutils-gdb] gdbserver: Remove thread_to_gdb_id sergiodj+buildbot
@ 2017-09-15 23:28 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-15 23:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1448>
Commit(s) tested:
124aceb46dfd1f836f35d6075ead4e00e705f6f3
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
gdbserver: Remove thread_to_gdb_id
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/12/124aceb46dfd1f836f35d6075ead4e00e705f6f3/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=1: wait for stops
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-15 17:56 [binutils-gdb] gdbserver: Remove gdb_id_to_thread_id sergiodj+buildbot
@ 2017-09-15 21:30 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-15 21:30 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1447>
Commit(s) tested:
96cde54f0adf2315404f3eba35dc3dfbc57f98c8
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
gdbserver: Remove gdb_id_to_thread_id
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/96/96cde54f0adf2315404f3eba35dc3dfbc57f98c8/>
*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/queue-signal.exp: determine thread functions
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-15 16:54 [binutils-gdb] gdbserver: Move detach code to its own function sergiodj+buildbot
@ 2017-09-15 20:16 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-15 20:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1446>
Commit(s) tested:
e8ca139ed036e6da8adf42fc6fbd93973b724d3c
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
gdbserver: Move detach code to its own function
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/e8/e8ca139ed036e6da8adf42fc6fbd93973b724d3c/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/longjmp.exp: next over patt3
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-15 17:29 [binutils-gdb] Deduplicate require_running macros and move them up sergiodj+buildbot
@ 2017-09-15 19:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-15 19:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1445>
Commit(s) tested:
f8a4e1192032044cdae544848865636f6e07a925
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
Deduplicate require_running macros and move them up
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/f8/f8a4e1192032044cdae544848865636f6e07a925/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/pthreads.exp: check backtrace from main thread
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-15 16:41 [binutils-gdb] Add -l option to src-release script sergiodj+buildbot
@ 2017-09-15 18:04 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-15 18:04 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1444>
Commit(s) tested:
ef87240fd95c5f29a697eccf20b2f1f6dc3593a6
Author(s) (in the same order as the commits):
Nick Clifton <nickc@redhat.com>
Subject:
Add -l option to src-release script.
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/ef/ef87240fd95c5f29a697eccf20b2f1f6dc3593a6/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/longjmp.exp: next over patt3
new FAIL: gdb.threads/queue-signal.exp: determine thread functions
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-15 13:29 [binutils-gdb] gdbserver: Remove duplicate functions to find any thread of process sergiodj+buildbot
@ 2017-09-15 15:02 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-15 15:02 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1441>
Commit(s) tested:
785922a559529420ce9b11342d7abe6ad32b3595
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@ericsson.com>
Subject:
gdbserver: Remove duplicate functions to find any thread of process
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/78/785922a559529420ce9b11342d7abe6ad32b3595/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/longjmp.exp: next over patt3
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-09-15 12:40 [binutils-gdb] Fix x86 build failures sergiodj+buildbot
@ 2017-09-15 13:07 ` sergiodj+buildbot
0 siblings, 0 replies; 2089+ messages in thread
From: sergiodj+buildbot @ 2017-09-15 13:07 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1440>
Commit(s) tested:
8d20070632b608587f372cf2d36ead339487e49c
Author(s) (in the same order as the commits):
Yao Qi <yao.qi@linaro.org>
Subject:
Fix x86 build failures
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/8d/8d20070632b608587f372cf2d36ead339487e49c/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/pthreads.exp: check backtrace from main thread
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 2089+ messages in thread
end of thread, other threads:[~2018-09-20 6:42 UTC | newest]
Thread overview: 2089+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-22 1:10 [binutils-gdb] problem debugging ravenscar programs if runtime is stripped sergiodj+buildbot
2017-11-22 1:10 ` Failures on Fedora-i686, branch master sergiodj+buildbot
2017-11-22 1:11 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
2017-11-22 1:13 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
2017-11-22 1:16 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
2017-11-22 1:33 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2017-11-22 1:33 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
2017-11-22 1:35 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
2017-11-22 2:49 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
2017-11-22 2:51 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
2017-11-22 3:19 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
2017-11-22 4:01 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
-- strict thread matches above, loose matches on Subject: below --
2018-05-30 20:37 [binutils-gdb] Remove regcache_register_status sergiodj+buildbot
2018-09-23 15:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-30 16:17 [binutils-gdb] 2018-05-30 Amaan Cheval <amaan.cheval@gmail.com> sergiodj+buildbot
2018-09-19 22:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-30 8:52 [binutils-gdb] Add znver2 support sergiodj+buildbot
2018-09-18 23:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-26 17:55 [binutils-gdb] Remove interp_ui_out sergiodj+buildbot
2018-09-13 12:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-25 17:20 [binutils-gdb] Remove cleanups from coff-pe-read.c sergiodj+buildbot
2018-09-10 23:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-25 12:40 [binutils-gdb] MIPS/Linux: Correct o32 core file FGR interpretation sergiodj+buildbot
2018-09-09 21:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-25 12:19 [binutils-gdb] Fix help and documentation for inferior commands sergiodj+buildbot
2018-09-02 20:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-25 0:21 [binutils-gdb] Update help text in record.c sergiodj+buildbot
2018-09-08 0:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-24 21:10 [binutils-gdb] Update help strings in TUI sergiodj+buildbot
2018-09-04 17:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-24 20:12 [binutils-gdb] Update core-related help strings sergiodj+buildbot
2018-09-04 11:08 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-23 19:22 [binutils-gdb] Remove file and line from struct complain sergiodj+buildbot
2018-08-24 3:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-23 3:06 [binutils-gdb] Fix gdb.base/remote.exp with native-extended-gdbserver board sergiodj+buildbot
2018-08-18 2:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-23 2:22 [binutils-gdb] remote: Make vcont_builder a class sergiodj+buildbot
2018-08-16 8:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-23 2:03 [binutils-gdb] gdb/x86: Fix `-Wstrict-overflow' build error in `i387_collect_xsave' sergiodj+buildbot
2018-08-17 15:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-22 17:34 [binutils-gdb] [PowerPC] Fix access to VSCR in linux targets sergiodj+buildbot
2018-08-08 8:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-22 15:57 [binutils-gdb] [PowerPC] Consolidate linux target description selection sergiodj+buildbot
2018-08-06 5:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-22 6:36 [binutils-gdb] PR23207, hppa ld SIGSEGVs on invalid object files sergiodj+buildbot
2018-08-04 13:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-21 20:19 [binutils-gdb] Change ada_catchpoint::excep_string to be a std::string sergiodj+buildbot
2018-07-30 13:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-21 17:46 [binutils-gdb] Use std::string in reread_symbols sergiodj+buildbot
2018-07-28 20:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-21 3:57 [binutils-gdb] Fix copy-pasto, allocate objfile_per_bfd_storage with obstack_new sergiodj+buildbot
2018-07-27 22:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-21 1:51 [binutils-gdb] Introduce obstack_new, poison other "typed" obstack functions sergiodj+buildbot
2018-07-27 1:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-19 7:33 [binutils-gdb] Fix reference in comment: SRC_AND_LOC instead of LOC_AND_SRC sergiodj+buildbot
2018-07-26 4:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-18 20:15 [binutils-gdb] Show padding in ptype/o output sergiodj+buildbot
2018-07-15 6:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-18 15:27 [binutils-gdb] Add support for the Freescale s12z processor sergiodj+buildbot
2018-07-14 19:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-17 15:55 [binutils-gdb] Updated simplified Chinese translation for the opcodes directory sergiodj+buildbot
2018-07-07 9:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-17 15:50 [binutils-gdb] value.c: Remove unused variables sergiodj+buildbot
2018-07-06 23:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-16 13:10 [binutils-gdb] PR22458, failure to choose a matching ELF target sergiodj+buildbot
2018-07-01 21:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-15 17:55 [binutils-gdb] MIPS: Make `mask_address_var' static sergiodj+buildbot
2018-06-29 11:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-15 15:48 [binutils-gdb] testsuite: Fix a `server_pid' access crash in gdb.server/server-kill.exp sergiodj+buildbot
2018-06-29 7:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-11 21:20 [binutils-gdb] Eliminate the 'the_core_target' global sergiodj+buildbot
2018-06-22 9:47 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-11 17:54 [binutils-gdb] Remove cleanups from mdebugread.c sergiodj+buildbot
2018-06-21 8:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-10 20:54 [binutils-gdb] Fix the clang build sergiodj+buildbot
2018-06-19 21:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-10 17:18 [binutils-gdb] gdbserver/Windows: Fix "no program to debug" error sergiodj+buildbot
2018-06-18 14:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-10 17:03 [binutils-gdb] [gdbserver/win32] fatal "glob could not process pattern '(null)'" error sergiodj+buildbot
2018-06-18 7:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-10 12:28 [binutils-gdb] Add support for detecting Freescale S12Z binaries in readelf sergiodj+buildbot
2018-06-16 22:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-10 10:11 [binutils-gdb] Fix tagged pointer support sergiodj+buildbot
2018-06-16 21:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-08 23:14 [binutils-gdb] RISC-V: Add missing hint instructions from RV128I sergiodj+buildbot
2018-06-11 20:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-08 17:40 [binutils-gdb] gdb/x86: Handle kernels using compact xsave format sergiodj+buildbot
2018-06-10 2:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-08 13:27 [binutils-gdb] watchpoint-unaligned.exp: Use skip_hw_watchpoint_tests sergiodj+buildbot
2018-06-07 9:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-08 12:20 [binutils-gdb] Prevent a memory exhaustion failure when running objdump on a fuzzed input file with corrupt string and attribute sections sergiodj+buildbot
2018-06-03 22:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-08 2:10 [binutils-gdb] Simplify VLE handling in print_insn_powerpc() sergiodj+buildbot
2018-06-03 12:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-07 15:27 [binutils-gdb] Fix decoding of ARM VFP instructions sergiodj+buildbot
2018-05-21 16:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-05 7:03 [binutils-gdb] Add fall-through comment to i386-tdep.c sergiodj+buildbot
2018-05-11 22:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-05 4:33 [binutils-gdb] Fix "fall through" comments sergiodj+buildbot
2018-05-10 7:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-05 1:14 [binutils-gdb] Use function_view in cli-script.c sergiodj+buildbot
2018-05-08 21:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-04 22:30 [binutils-gdb] aarch64: PR 19806: watchpoints: false negatives + PR 20207 contiguous ones sergiodj+buildbot
2018-05-06 21:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-04 21:12 [binutils-gdb] (SPARC/LEON) fix incorrect array return value printed by "finish" sergiodj+buildbot
2018-05-05 19:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-04 20:13 [binutils-gdb] Remove do_closedir_cleanup sergiodj+buildbot
2018-05-05 12:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-04 14:14 [binutils-gdb] configure uses incorrect link order when testing libpython sergiodj+buildbot
2018-05-04 18:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-03 21:34 [binutils-gdb] gdb/testsuite: Filter out some registers for riscv sergiodj+buildbot
2018-05-04 5:08 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-03 2:54 [binutils-gdb] Eliminate target_ops::to_xclose sergiodj+buildbot
2018-05-03 11:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-03 2:12 [binutils-gdb] Make inf_ptrace_trad Linux-only, move to separate file sergiodj+buildbot
2018-05-03 9:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-03 0:37 [binutils-gdb] More procfs.c simplification sergiodj+buildbot
2018-05-03 6:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-05-01 1:23 [binutils-gdb] Remove a use of is_mi_like_p from darwin-nat-info.c sergiodj+buildbot
2018-05-02 12:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-30 23:58 [binutils-gdb] Remove some uses of is_mi_like_p from spu-tdep.c sergiodj+buildbot
2018-05-02 5:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-30 23:38 [binutils-gdb] Remove some uses of is_mi_like_p from py-framefilter.c sergiodj+buildbot
2018-05-02 3:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-30 22:16 [binutils-gdb] Change Python code to use new_reference sergiodj+buildbot
2018-05-01 22:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-30 21:46 [binutils-gdb] Introduce ref_ptr::new_reference sergiodj+buildbot
2018-05-01 14:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-30 21:37 [binutils-gdb] Remove new_bfd_ref sergiodj+buildbot
2018-05-01 17:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-30 19:20 [binutils-gdb] Expose type alignment on gdb.Type sergiodj+buildbot
2018-05-01 4:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-30 18:19 [binutils-gdb] Handle alignof and _Alignof sergiodj+buildbot
2018-05-01 1:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-30 17:32 [binutils-gdb] Add initial type alignment support sergiodj+buildbot
2018-04-30 23:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-30 15:27 [binutils-gdb] Use bool in read_index_from_section sergiodj+buildbot
2018-04-30 18:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-29 16:52 [binutils-gdb] proc-events.c: fix compilation on Solaris sergiodj+buildbot
2018-04-30 12:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-29 16:18 [binutils-gdb] Fix race when building ada-lex.c sergiodj+buildbot
2018-04-30 6:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-27 20:09 [binutils-gdb] Add inclusive range support for Rust sergiodj+buildbot
2018-04-29 20:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-27 19:21 [binutils-gdb] Enable -Wsuggest-override sergiodj+buildbot
2018-04-29 16:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-27 13:09 [binutils-gdb] Revert "Enable Intel MOVDIRI, MOVDIR64B instructions." sergiodj+buildbot
2018-04-29 14:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-27 11:12 [binutils-gdb] Regenerate some files for recent ARM patches sergiodj+buildbot
2018-04-29 11:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 23:25 [binutils-gdb] Fix remote 'g' command error handling (PR remote/9665) sergiodj+buildbot
2018-04-29 5:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 22:02 [binutils-gdb] Enable Intel MOVDIRI, MOVDIR64B instructions sergiodj+buildbot
2018-04-29 2:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 19:45 [binutils-gdb] Fix resolving GNU ifunc bp locations when inferior runs resolver sergiodj+buildbot
2018-04-29 0:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 18:42 [binutils-gdb] Extend GNU ifunc testcases sergiodj+buildbot
2018-04-28 22:06 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 18:05 [binutils-gdb] PPC64: always make synthetic .text symbols for GNU ifunc symbols sergiodj+buildbot
2018-04-28 19:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 16:34 [binutils-gdb] For PPC64: elf_gnu_ifunc_record_cache: handle plt symbols in .text section sergiodj+buildbot
2018-04-28 10:49 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 15:43 [binutils-gdb] Eliminate find_pc_partial_function_gnu_ifunc sergiodj+buildbot
2018-04-28 4:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 15:18 [binutils-gdb] Breakpoints, don't skip prologue of ifunc resolvers with debug info sergiodj+buildbot
2018-04-28 2:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 14:53 [binutils-gdb] Fix setting breakpoints on ifunc functions after they're already resolved sergiodj+buildbot
2018-04-28 0:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 14:33 [binutils-gdb] Calling ifunc functions when resolver has debug info, user symbol same name sergiodj+buildbot
2018-04-27 19:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 14:27 [binutils-gdb] Fix calling ifunc functions when resolver has debug info and different name sergiodj+buildbot
2018-04-27 14:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 13:28 [binutils-gdb] Calling ifunc functions when target has no debug info but resolver has sergiodj+buildbot
2018-04-27 17:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 12:47 [binutils-gdb] Fix breakpoints in ifunc after inferior resolved it (@got.plt symbol creation) sergiodj+buildbot
2018-04-27 12:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 10:29 [binutils-gdb] x86: x87-related adjustments sergiodj+buildbot
2018-04-27 1:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 9:03 [binutils-gdb] x86: fold various non-memory operand AVX512VL templates sergiodj+buildbot
2018-04-27 9:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 8:36 [binutils-gdb] x86: CpuXSAVE is a prereq for various other features sergiodj+buildbot
2018-04-27 7:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 8:13 [binutils-gdb] x86: drop CpuRegMMX, CpuReg[XYZ]MM, and CpuRegMask sergiodj+buildbot
2018-04-27 4:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 7:04 [binutils-gdb] x86: drop VexImmExt sergiodj+buildbot
2018-04-26 23:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 2:23 [binutils-gdb] [ARM] FDPIC: Make _GLOBAL_OFFSET_TABLE_ a relative symbol sergiodj+buildbot
2018-04-26 19:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 1:48 [binutils-gdb] [ARM] FDPIC: Translate R_ARM_TARGET2 relocation into R_ARM_GOT32 relocation for FDPIC platform sergiodj+buildbot
2018-04-26 16:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 1:29 [binutils-gdb] [ARM] FDPIC: Add stack segment sergiodj+buildbot
2018-04-26 14:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 0:55 [binutils-gdb] [ARM] Add TLS relocations for FDPIC sergiodj+buildbot
2018-04-26 12:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-26 0:03 [binutils-gdb] [ARM] Implement PLT for FDPIC sergiodj+buildbot
2018-04-26 9:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-25 23:02 [binutils-gdb] [ARM] Add FDPIC relocations definitions sergiodj+buildbot
2018-04-26 4:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-25 22:20 [binutils-gdb] [ARM] Add FDPIC OSABI flag support sergiodj+buildbot
2018-04-26 2:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-25 21:40 [binutils-gdb] [ARM] Add armelf_linux_fdpiceabi and armelfb_linux_fdpiceabi BFD backends sergiodj+buildbot
2018-04-25 23:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-25 18:28 [binutils-gdb] Fix new inferior events output sergiodj+buildbot
2018-04-25 20:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-25 14:49 [binutils-gdb] x86: drop redundant AVX512VL shift templates sergiodj+buildbot
2018-04-25 18:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-25 0:47 [binutils-gdb] Remove arm-aout and arm-coff support sergiodj+buildbot
2018-04-25 8:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-24 16:07 [binutils-gdb] Fix an illegal memory access when copying a PE format file with corrupt debug information sergiodj+buildbot
2018-04-24 23:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-23 12:15 [binutils-gdb] Prevent an illegal memory access in gprof by ensuring that string tables for aout format files are always zero-terminated sergiodj+buildbot
2018-04-23 14:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-23 9:10 [binutils-gdb] Silence gcc-8 warnings sergiodj+buildbot
2018-04-23 12:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-20 21:47 [binutils-gdb] Improve on-line help for thread_apply_command and thread_apply_all_command sergiodj+buildbot
2018-04-21 9:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-20 14:09 [binutils-gdb] PR22978, TLS local-dynamic incorrectly linked on hppa-linux sergiodj+buildbot
2018-04-20 21:47 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-19 17:40 [binutils-gdb] Fix dependency tracking in gdbserver subdirectories sergiodj+buildbot
2018-04-19 22:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-18 21:02 [binutils-gdb] Remove xml file references from target descriptions sergiodj+buildbot
2018-04-19 12:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-18 20:22 [binutils-gdb] Add feature reference in .dat files sergiodj+buildbot
2018-04-19 6:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-18 14:07 [binutils-gdb] Commonise tdesc_feature and makes use of it in gdbserver tdesc sergiodj+buildbot
2018-04-18 20:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-18 8:44 [binutils-gdb] Remove mips aout, coff, and pe support sergiodj+buildbot
2018-04-18 15:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-18 2:13 [binutils-gdb] elf32_bed/elf64_bed sergiodj+buildbot
2018-04-18 13:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-18 1:33 [binutils-gdb] x86: Use a normal input file with compatible relocation sergiodj+buildbot
2018-04-18 11:24 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-18 0:23 [binutils-gdb] various i386-aout and i386-coff target removal sergiodj+buildbot
2018-04-18 8:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-17 20:26 [binutils-gdb] Conditionally drop the discriminant field in quirk_rust_enum sergiodj+buildbot
2018-04-18 4:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-17 17:52 [binutils-gdb] Don't print symbol declaration's line number in rbreak output sergiodj+buildbot
2018-04-17 23:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-17 13:19 [binutils-gdb] Resync libiberty sources with master version in GCC repository sergiodj+buildbot
2018-04-17 17:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-17 3:38 [binutils-gdb] Reinstate readelf decoding of i860, i960 and i370 relocs sergiodj+buildbot
2018-04-17 13:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-16 21:12 [binutils-gdb] linux_spu_make_corefile_notes: return note_data instead of nullptr sergiodj+buildbot
2018-04-17 11:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-16 19:20 [binutils-gdb] Adjust more test cases to changed output of info var/func/type sergiodj+buildbot
2018-04-17 8:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-16 9:50 [binutils-gdb] Remove h8300-coff support sergiodj+buildbot
2018-04-16 20:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-16 9:17 [binutils-gdb] Remove IEEE 695 object support sergiodj+buildbot
2018-04-16 18:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-16 8:43 [binutils-gdb] Remove tandem support sergiodj+buildbot
2018-04-16 16:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-14 9:25 [binutils-gdb] powerpc common-page-size sergiodj+buildbot
2018-04-14 16:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-14 9:08 [binutils-gdb] powerpc max-page-size vs __QNXTARGET__ sergiodj+buildbot
2018-04-14 14:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-14 8:58 [binutils-gdb] powerpc-lynxos and powerpc-windiss fixes sergiodj+buildbot
2018-04-14 11:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-13 17:44 [binutils-gdb] Show line numbers in output for "info var/func/type" sergiodj+buildbot
2018-04-13 21:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-13 10:21 [binutils-gdb] btrace: set/show record btrace cpu sergiodj+buildbot
2018-04-13 19:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-13 9:59 [binutils-gdb] btrace: fix output of "set record btrace" sergiodj+buildbot
2018-04-13 14:13 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-12 20:34 [binutils-gdb] Fix -D_GLIBCXX_DEBUG gdb-add-index regression sergiodj+buildbot
2018-04-13 3:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-12 19:33 [binutils-gdb] Remove old univariant code from rust-lang.c sergiodj+buildbot
2018-04-13 1:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-12 17:40 [binutils-gdb] Fix Solaris build sergiodj+buildbot
2018-04-12 23:24 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-11 11:23 [binutils-gdb] File I/O file handles after target closes sergiodj+buildbot
2018-04-11 15:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-10 21:11 [binutils-gdb] Iterate by index in auto_load_safe_path_vec_update sergiodj+buildbot
2018-04-10 23:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-09 20:19 [binutils-gdb] Adapt and integrate string_view tests sergiodj+buildbot
2018-04-10 8:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-09 20:08 [binutils-gdb] Use an std::vector for inline_states sergiodj+buildbot
2018-04-10 12:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-09 19:54 [binutils-gdb] Remove VEC(tsv_s), use std::vector instead sergiodj+buildbot
2018-04-10 9:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-09 19:11 [binutils-gdb] Add gdb::string_view sergiodj+buildbot
2018-04-10 5:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-09 18:41 [binutils-gdb] Update ax_cv_cxx_compile_cxx.m4 sergiodj+buildbot
2018-04-10 2:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-09 15:13 [binutils-gdb] Apply "Convert observers to C++" edit to gdbarch.sh sergiodj+buildbot
2018-04-10 1:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-09 13:12 [binutils-gdb] MIPS64/BFD: Fix a crash with STN_UNDEF in relocation sergiodj+buildbot
2018-04-09 23:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-09 11:16 [binutils-gdb] PowerPC inline PLT call support sergiodj+buildbot
2018-04-09 19:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-09 9:17 [binutils-gdb] Support PLT16 relocs against local symbols sergiodj+buildbot
2018-04-09 17:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-09 9:03 [binutils-gdb] Rearrange PLT reloc output on powerpc sergiodj+buildbot
2018-04-09 14:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 20:50 [binutils-gdb] Replace dw2_get_cu/dw2_get_cutu with methods of dwarf2_per_objfile sergiodj+buildbot
2018-04-08 3:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 20:40 [binutils-gdb] Fix gdb.mi/mi-stack.exp when gcc generates a stack protector sergiodj+buildbot
2018-04-08 13:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 20:17 [binutils-gdb] Remove stale file i386-avx.dat sergiodj+buildbot
2018-04-07 22:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 20:11 [binutils-gdb] Replace make_cleanup_restore_current_traceframe with RAII class sergiodj+buildbot
2018-04-08 10:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 19:29 [binutils-gdb] Remove some usages of get_dwarf2_per_objfile sergiodj+buildbot
2018-04-08 5:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 19:01 [binutils-gdb] Remove some unused variables in dwarf2read.c sergiodj+buildbot
2018-04-08 2:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 18:47 [binutils-gdb] Defer breakpoint reset when cloning progspace for fork child sergiodj+buildbot
2018-04-08 1:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 18:34 [binutils-gdb] Implement write_async_safe for mi_console_file (PR 22299) sergiodj+buildbot
2018-04-08 0:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 18:05 [binutils-gdb] Fix generation of x86-64 gdbarch with osabi none (PR 22979) sergiodj+buildbot
2018-04-07 21:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 17:38 [binutils-gdb] Make target_read_alloc & al return vectors sergiodj+buildbot
2018-04-07 18:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 4:04 [binutils-gdb] Remove value::next and value::released sergiodj+buildbot
2018-04-07 8:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 2:23 [binutils-gdb] Remove free_all_values sergiodj+buildbot
2018-04-07 5:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 0:41 [binutils-gdb] Change varobj to use value_ref_ptr sergiodj+buildbot
2018-04-07 3:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-07 0:26 [binutils-gdb] Remove range_s VEC sergiodj+buildbot
2018-04-07 13:44 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-06 23:57 [binutils-gdb] Use new and delete for values sergiodj+buildbot
2018-04-07 11:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-06 23:29 [binutils-gdb] Remove free_value_chain sergiodj+buildbot
2018-04-07 7:10 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-06 23:00 [binutils-gdb] Change value history to use value_ref_ptr sergiodj+buildbot
2018-04-07 4:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-06 22:31 [binutils-gdb] Change last_examine_value to value_ref_ptr sergiodj+buildbot
2018-04-07 1:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-06 20:32 [binutils-gdb] Add -Wno-error=deprecated-register to gdb build flags sergiodj+buildbot
2018-04-06 21:53 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-05 22:53 [binutils-gdb] Use dlsym to check if libdl is needed for plugin sergiodj+buildbot
2018-04-06 11:24 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-05 22:49 [binutils-gdb] config: Sync with GCC sergiodj+buildbot
2018-04-06 9:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-05 18:17 [binutils-gdb] Change streq to return bool sergiodj+buildbot
2018-04-06 3:13 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-05 15:05 [binutils-gdb] Remove a string copy from event_location_to_sals sergiodj+buildbot
2018-04-06 1:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-05 14:52 [binutils-gdb] Have filter_results take a std::vector sergiodj+buildbot
2018-04-05 22:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-05 14:37 [binutils-gdb] Return std::string from canonical_to_fullform sergiodj+buildbot
2018-04-05 19:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-05 14:24 [binutils-gdb] Make copy_token_string return unique_xmalloc_ptr sergiodj+buildbot
2018-04-05 18:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-05 13:56 [binutils-gdb] Remove some cleanups from search_minsyms_for_name sergiodj+buildbot
2018-04-05 15:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-04 11:58 [binutils-gdb] i386: Clear vex instead of vex.evex sergiodj+buildbot
2018-04-04 14:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-04 8:16 [binutils-gdb] Update Spanish translations for ld/ opcodes/ and gold/ sub-directories sergiodj+buildbot
2018-04-04 12:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-04 2:44 [binutils-gdb] PR binutils/22875: HPPA/ELF: Also fail with relocation placeholders sergiodj+buildbot
2018-04-04 10:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-04 2:30 [binutils-gdb] PR binutils/22875: i860/ELF: Report unsupported relocation types sergiodj+buildbot
2018-04-04 8:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-04 2:16 [binutils-gdb] PR binutils/22875: Visium/ELF: Prevent an out-of-bounds howto table access sergiodj+buildbot
2018-04-04 6:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-04 2:02 [binutils-gdb] PR binutils/22875: FRV/ELF: Prevent an out-of-bounds howto table access sergiodj+buildbot
2018-04-04 3:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-04 1:44 [binutils-gdb] PR binutils/22875: IQ2000/ELF: Prevent an out-of-bounds howto table access sergiodj+buildbot
2018-04-04 5:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-04 1:17 [binutils-gdb] PR binutils/22875: MIPS/ELF: Also fail with relocation placeholders sergiodj+buildbot
2018-04-04 2:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-03 18:20 [binutils-gdb] Change read_alphacoff_dynamic_symtab to use gdb::byte_vector sergiodj+buildbot
2018-04-03 19:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-04-02 2:44 [binutils-gdb] Change rs6000_ptrace_ldinfo to return a byte_vector sergiodj+buildbot
2018-04-02 3:49 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-31 1:27 [binutils-gdb] Use std::vector and std::string instead of VEC(char_ptr) in gdbserver tdesc sergiodj+buildbot
2018-03-31 7:10 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-30 22:45 [binutils-gdb] Use std::vector in uploaded_tp sergiodj+buildbot
2018-03-31 5:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-30 22:03 [binutils-gdb] Remove usage of VEC(char_ptr) in gdbscm_parse_function_args sergiodj+buildbot
2018-03-31 9:24 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-30 20:35 [binutils-gdb] Remove some cleanups from solib-svr4.c sergiodj+buildbot
2018-03-31 4:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-30 20:03 [binutils-gdb] Remove free_cached_comp_units cleanups sergiodj+buildbot
2018-03-30 22:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-30 19:55 [binutils-gdb] Remove parameter from free_dwo_file sergiodj+buildbot
2018-03-31 0:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-29 13:26 [binutils-gdb] PR binutils/22875: MIPS: Remove duplicate unsupported relocation processing sergiodj+buildbot
2018-03-29 14:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-28 20:56 [binutils-gdb] MIPS/BFD: Call `mips_elf32_rtype_to_howto' directly with o32 sergiodj+buildbot
2018-03-29 0:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-28 17:35 [binutils-gdb] [1/2][GAS][AARCH64]Add BFD_RELOC_AARCH64_TLSLE_LDST8/16/32/64_TPREL_LO12 support in GAS sergiodj+buildbot
2018-03-28 21:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-28 13:10 [binutils-gdb] x86: convert broadcast insn attribute to boolean sergiodj+buildbot
2018-03-28 18:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-28 12:42 [binutils-gdb] x86: don't show suffixes for to-scalar-int conversion insns sergiodj+buildbot
2018-03-28 14:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-28 10:35 [binutils-gdb] PR ld/22972 on SPARC sergiodj+buildbot
2018-03-28 13:06 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-28 9:04 [binutils-gdb] Enhance the AARCH64 assembler to support LDFF1xx instructions which use REG+REG addressing with an assumed offset register sergiodj+buildbot
2018-03-28 11:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-27 17:14 [binutils-gdb] Remove cleanups from gdb_readline_wrapper sergiodj+buildbot
2018-03-28 7:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-27 15:13 [binutils-gdb] Include <cmath> in dwarf-index-write.c sergiodj+buildbot
2018-03-28 4:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-27 14:24 [binutils-gdb] Move DWARF index-related things to a separate file sergiodj+buildbot
2018-03-28 2:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-27 14:13 [binutils-gdb] problem looking up some symbols when they have a linkage name sergiodj+buildbot
2018-03-28 0:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-27 7:12 [binutils-gdb] Simplify exception handling in py-framefilter.c sergiodj+buildbot
2018-03-27 22:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-27 6:58 [binutils-gdb] Improve "backtrace" help text sergiodj+buildbot
2018-03-27 20:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-27 6:44 [binutils-gdb] Call wrap_hint in one more spot in py-framefilter.c sergiodj+buildbot
2018-03-27 19:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-27 6:17 [binutils-gdb] Move some code later in backtrace_command_1 sergiodj+buildbot
2018-03-27 16:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-27 5:17 [binutils-gdb] Avoid manual resource management in py-framefilter.c sergiodj+buildbot
2018-03-27 11:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-27 4:49 [binutils-gdb] Allow hiding of some filtered frames sergiodj+buildbot
2018-03-27 8:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-27 4:34 [binutils-gdb] Change backtrace_command_1 calling to use flags sergiodj+buildbot
2018-03-27 6:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-27 4:21 [binutils-gdb] Rationalize "backtrace" command line parsing sergiodj+buildbot
2018-03-27 5:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-26 11:05 [binutils-gdb] Make gdbserver reg_defs a vector of objects sergiodj+buildbot
2018-03-26 12:13 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-24 3:23 [binutils-gdb] aarch64: Make "info address" resolve TLS variables sergiodj+buildbot
2018-03-24 4:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-23 13:00 [binutils-gdb] gdb: Fix testsuite issue in gdb.arch/amd64-disp-step-avx.exp sergiodj+buildbot
2018-03-23 15:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-23 12:14 [binutils-gdb] gdb: Minor cleanup in some gdb.arch/* tests sergiodj+buildbot
2018-03-23 14:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-23 9:56 [binutils-gdb] Testsuite: fully migrate to use_gdb_stub convenience func sergiodj+buildbot
2018-03-23 11:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-23 3:37 [binutils-gdb] Remove some cleanups from record-full.c sergiodj+buildbot
2018-03-23 4:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-22 13:54 [binutils-gdb] ppc: Fix stwux and stdux masks in skip_prologue sergiodj+buildbot
2018-03-22 20:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-22 13:41 [binutils-gdb] ppc: Detect when LR is saved through frame pointer sergiodj+buildbot
2018-03-22 19:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-22 9:20 [binutils-gdb] S390: Correct brace style in s390_get_wordsize sergiodj+buildbot
2018-03-22 16:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-22 8:31 [binutils-gdb] x86: drop remaining redundant DispN sergiodj+buildbot
2018-03-22 13:47 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-22 8:17 [binutils-gdb] x86: fix swapped operand handling for BNDMOV sergiodj+buildbot
2018-03-22 12:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-22 8:02 [binutils-gdb] x86/Intel: fix fallout from earlier template folding sergiodj+buildbot
2018-03-22 11:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-22 4:50 [binutils-gdb] Make parse_static_tracepoint_marker_definition work with multiple static tracepoint definitions sergiodj+buildbot
2018-03-22 5:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-21 20:49 [binutils-gdb] Add myself as a write-after-approval GDB maintainer sergiodj+buildbot
2018-03-22 0:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-21 20:10 [binutils-gdb] DT_FLAGS_1: Add Solaris bits sergiodj+buildbot
2018-03-21 23:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-21 12:27 [binutils-gdb] PowerPC64 synthetic symbols sergiodj+buildbot
2018-03-21 18:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-21 11:59 [binutils-gdb] Make tls_mask unsigned in elf32-ppc.c sergiodj+buildbot
2018-03-21 15:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-21 11:32 [binutils-gdb] Don't exceed reloc array bounds sergiodj+buildbot
2018-03-21 12:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-20 14:14 [binutils-gdb] Replace the linear search in find_pc_sect_line with a binary search sergiodj+buildbot
2018-03-20 15:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-19 17:31 [binutils-gdb] Support bare-identifier field initializers in Rust sergiodj+buildbot
2018-03-19 18:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-19 11:10 [binutils-gdb] Updated Spanish translation for the bfd/ sub-directory, and updated Ukranian translation for the gas/ sub-directory sergiodj+buildbot
2018-03-19 12:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-19 4:11 [binutils-gdb] Remove some cleanups from solib.c sergiodj+buildbot
2018-03-19 5:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-16 21:30 [binutils-gdb] Add silent Makefile rules sergiodj+buildbot
2018-03-16 23:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-16 2:19 [binutils-gdb] Add selftest for substitute_path_component sergiodj+buildbot
2018-03-16 3:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-15 8:04 [binutils-gdb] nds32: Remove the unsupported target feature sergiodj+buildbot
2018-03-15 9:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-14 17:26 [binutils-gdb] Allow - in %p for printf sergiodj+buildbot
2018-03-14 18:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-14 16:46 [binutils-gdb] Special case NULL when using printf's %s format sergiodj+buildbot
2018-03-14 19:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-14 16:04 [binutils-gdb] Add usage to printf command sergiodj+buildbot
2018-03-14 17:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-14 13:59 [binutils-gdb] Update my email address sergiodj+buildbot
2018-03-14 15:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-14 12:19 [binutils-gdb] PowerPC64 debian bug 886264, out-of-line save/restore functions sergiodj+buildbot
2018-03-14 14:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-13 23:55 [binutils-gdb] Remove two cleanups using std::string sergiodj+buildbot
2018-03-14 0:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-13 14:19 [binutils-gdb] Prevent memory access violations when attempting to parse an x86_64 PE binary containing corrupt unwind information sergiodj+buildbot
2018-03-13 16:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-12 22:14 [binutils-gdb] gdb/riscv: Fix some ARI issues sergiodj+buildbot
2018-03-12 23:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-12 14:44 [binutils-gdb] Use gdb::byte_vector when reading section data sergiodj+buildbot
2018-03-12 15:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-12 3:22 [binutils-gdb] Remove cleanup from build_type_psymtabs_1 sergiodj+buildbot
2018-03-12 4:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-09 5:23 [binutils-gdb] Use scoped_fd in more places sergiodj+buildbot
2018-03-09 23:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-09 0:12 [binutils-gdb] Make find_separate_debug_file* return std::string sergiodj+buildbot
2018-03-09 18:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-08 20:05 [binutils-gdb] x86-64: Also optimize "clr reg64" sergiodj+buildbot
2018-03-09 12:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-08 13:06 [binutils-gdb] x86: fold LWP templates sergiodj+buildbot
2018-03-08 21:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-08 9:44 [binutils-gdb] x86: fold VEX-encoded GFNI templates sergiodj+buildbot
2018-03-09 2:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-08 9:07 [binutils-gdb] x86: fold FMA and FMA4 templates sergiodj+buildbot
2018-03-08 19:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-08 8:43 [binutils-gdb] x86: drop bogus NoAVX sergiodj+buildbot
2018-03-08 15:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-08 8:27 [binutils-gdb] x86: bogus VMOVD with 64-bit operands should only allow for registers sergiodj+buildbot
2018-03-08 10:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-08 8:19 [binutils-gdb] x86: drop FloatD sergiodj+buildbot
2018-03-08 12:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-07 23:02 [binutils-gdb] Return gdb::optional<std::string> from target_fileio_readlink sergiodj+buildbot
2018-03-08 0:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-07 17:55 [binutils-gdb] gdb: Add riscv to list of architectures with a save_reggroup sergiodj+buildbot
2018-03-07 19:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-07 17:03 [binutils-gdb] [PR20402][LD][AARCH64]Don't emit RELATIVE relocation for absolute symbols which are resolved at static linking time sergiodj+buildbot
2018-03-07 18:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-07 7:12 [binutils-gdb] XCOFF disassembler sergiodj+buildbot
2018-03-07 9:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-07 7:01 [binutils-gdb] mips64 rtype_to_howto error status sergiodj+buildbot
2018-03-07 8:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-06 21:53 [binutils-gdb] Formatting fixes in rust-exp.y sergiodj+buildbot
2018-03-07 3:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-06 19:45 [binutils-gdb] gdb/riscv: Remove use of pseudo registers sergiodj+buildbot
2018-03-06 22:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-06 15:28 [binutils-gdb] gdb/riscv: Fix type when reading register from regcache sergiodj+buildbot
2018-03-06 17:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-06 10:29 [binutils-gdb] gdb/amd64: Ignore zero sized fields when calling functions sergiodj+buildbot
2018-03-06 11:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-05 1:19 [binutils-gdb] Propagate gdb_disassembly_flags to btrace_print_lines sergiodj+buildbot
2018-03-05 2:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-04 6:38 [binutils-gdb] Use signal information to determine SIGTRAP type for FreeBSD sergiodj+buildbot
2018-03-04 10:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-04 5:54 [binutils-gdb] Implement "to_stopped_by_hw_breakpoint" for x86 debug registers sergiodj+buildbot
2018-03-04 6:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-03 8:16 [binutils-gdb] Remove free_char_ptr_vec sergiodj+buildbot
2018-03-03 11:44 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-03 5:54 [binutils-gdb] handle_general_set: Remove useless xstrdup sergiodj+buildbot
2018-03-03 13:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-03 5:05 [binutils-gdb] Make program_space::deleted_solibs a vector of std::string sergiodj+buildbot
2018-03-03 8:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-03 1:20 [binutils-gdb] opcodes error messages sergiodj+buildbot
2018-03-03 2:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-02 12:07 [binutils-gdb] [GDB/testsuite] Use %progbits in watch-loc.c sergiodj+buildbot
2018-03-02 13:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-02 11:03 [binutils-gdb] Ensure 8-byte alignment for AArch64 stubs sergiodj+buildbot
2018-03-02 12:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-01 22:37 [binutils-gdb] RISC-V: Fix symbol size bug when relaxation deletes bytes sergiodj+buildbot
2018-03-02 0:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-01 16:51 [binutils-gdb] Fix Rust enum test failures sergiodj+buildbot
2018-03-01 18:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-03-01 14:29 [binutils-gdb] x86: Encode AVX256/AVX512 vpsub[bwdq] with VEX128/EVEX128 sergiodj+buildbot
2018-03-01 15:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-28 23:16 [binutils-gdb] correct ft32 reloc range test sergiodj+buildbot
2018-03-01 7:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-28 17:06 [binutils-gdb] Make gdbserver work with filename-only binaries sergiodj+buildbot
2018-03-01 4:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-28 17:02 [binutils-gdb] Create new common/pathstuff.[ch] sergiodj+buildbot
2018-03-01 3:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-28 12:18 [binutils-gdb] Catch integer overflows/underflows when parsing corrupt DWARF FORM blocks sergiodj+buildbot
2018-03-01 0:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-28 12:05 [binutils-gdb] PR22887, null pointer dereference in aout_32_swap_std_reloc_out sergiodj+buildbot
2018-02-28 23:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-28 7:57 [binutils-gdb] Nonsense error messages on invalid aout string offset sergiodj+buildbot
2018-02-28 21:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-27 19:20 [binutils-gdb] Change target_write_memory_blocks to use std::vector sergiodj+buildbot
2018-02-28 15:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-27 16:46 [binutils-gdb] Explicitly specify common tdesc.h for use with aarch64.h sergiodj+buildbot
2018-02-28 13:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-27 12:32 [binutils-gdb] Use standardized error message for unrecognized relocs sergiodj+buildbot
2018-02-28 9:53 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-27 10:41 [binutils-gdb] Have info_to_howto functions return a success/fail status. Check this result. Stop strip from completeing if one of these functions fails sergiodj+buildbot
2018-02-28 8:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-27 0:14 [binutils-gdb] Handle DW_TAG_variant_part and DW_TAG_variant sergiodj+buildbot
2018-02-27 19:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 21:31 [binutils-gdb] Convert Rust to use discriminated unions sergiodj+buildbot
2018-02-27 17:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 20:30 [binutils-gdb] MIPS: Don't use a 32-bit BFD architecture with a 64-bit ABI sergiodj+buildbot
2018-02-28 3:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 18:41 [binutils-gdb] Move read_partial_die to partial_die_info::read sergiodj+buildbot
2018-02-27 11:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 18:06 [binutils-gdb] Change frame_filter_flags to use DEF_ENUM_FLAGS_TYPE sergiodj+buildbot
2018-02-28 0:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 17:54 [binutils-gdb] Make "bt N" print correct number of frames when using a frame filter sergiodj+buildbot
2018-02-27 21:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 17:16 [binutils-gdb] Initial support for variant parts sergiodj+buildbot
2018-02-27 15:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 12:02 [binutils-gdb] Move arch/tdesc.h to common/tdesc.h sergiodj+buildbot
2018-02-26 23:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 1:53 [binutils-gdb] Segfault on phdrs allocated but not created sergiodj+buildbot
2018-02-26 21:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 1:40 [binutils-gdb] crx string overflow warning sergiodj+buildbot
2018-02-26 19:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 1:28 [binutils-gdb] assorted target messages sergiodj+buildbot
2018-02-26 16:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 1:16 [binutils-gdb] BFD messages sergiodj+buildbot
2018-02-26 14:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 1:03 [binutils-gdb] AOUT/COFF/PE messages sergiodj+buildbot
2018-02-26 12:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 0:38 [binutils-gdb] MIPS messages sergiodj+buildbot
2018-02-26 7:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 0:14 [binutils-gdb] ELF linker messages sergiodj+buildbot
2018-02-26 5:49 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-26 0:13 [binutils-gdb] unrecognized/unsupported reloc message sergiodj+buildbot
2018-02-26 3:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-25 20:37 [binutils-gdb] Fix double space expected in cp_test_ptype_class sergiodj+buildbot
2018-02-25 22:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-24 17:31 [binutils-gdb] Remove most cleanups from linux-thread-db.c sergiodj+buildbot
2018-02-24 21:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-24 17:19 [binutils-gdb] Remove cleanups from check_fast_tracepoint_sals sergiodj+buildbot
2018-02-24 18:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-23 20:31 [binutils-gdb] GDB/testsuite: Fix a typo in $actual_line sergiodj+buildbot
2018-02-23 23:10 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-23 11:31 [binutils-gdb] PR22881, null pointer dereference in assign_file_positions_for_non_load_sections sergiodj+buildbot
2018-02-23 13:47 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-23 7:38 [binutils-gdb] nds32: Support target directive .ict_model sergiodj+buildbot
2018-02-23 9:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-22 22:16 [binutils-gdb] New plugin interface to get list of symbols wrapped with --wrap option sergiodj+buildbot
2018-02-23 2:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-22 14:40 [binutils-gdb] x86: Add {rex} pseudo prefix sergiodj+buildbot
2018-02-22 23:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-21 19:23 [binutils-gdb] Add "common-defs.h" include to files in arch/ subdir not yet including it sergiodj+buildbot
2018-02-22 18:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-21 17:11 [binutils-gdb] Remove a cleanup from call_function_by_hand_dummy sergiodj+buildbot
2018-02-22 13:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-21 16:31 [binutils-gdb] Remove a cleanup from parse_expression_for_completion sergiodj+buildbot
2018-02-22 16:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-21 15:39 [binutils-gdb] Move register_dump to regcache-dump.c sergiodj+buildbot
2018-02-22 8:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-21 13:27 [binutils-gdb] Pass readable_regcache to gdbarch method read_pc sergiodj+buildbot
2018-02-22 10:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-21 12:50 [binutils-gdb] No longer create readonly regcache sergiodj+buildbot
2018-02-22 4:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-21 12:25 [binutils-gdb] Class detached_regcache sergiodj+buildbot
2018-02-22 0:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-21 12:12 [binutils-gdb] Class readonly_detached_regcache sergiodj+buildbot
2018-02-21 21:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-21 12:00 [binutils-gdb] Remove regcache_save and regcache_cpy sergiodj+buildbot
2018-02-21 19:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-21 11:47 [binutils-gdb] class readable_regcache and pass readable_regcache to gdbarch pseudo_register_read and pseudo_register_read_value sergiodj+buildbot
2018-02-21 16:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-21 11:39 [binutils-gdb] Class reg_buffer sergiodj+buildbot
2018-02-21 13:53 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-20 21:11 [binutils-gdb] MIPS16/opcodes: Free up `M' operand code sergiodj+buildbot
2018-02-20 23:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-20 16:58 [binutils-gdb] remote-sim: Add missing ATTRIBUTE_PRINTF sergiodj+buildbot
2018-02-20 20:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-20 14:56 [binutils-gdb] Enable link time garbage collection support for the IA64 target sergiodj+buildbot
2018-02-20 19:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-20 11:13 [binutils-gdb] Fix make 3.81 build errors sergiodj+buildbot
2018-02-20 13:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-19 3:38 [binutils-gdb] PT_LOAD and PT_GNU_RELRO segment overlap sergiodj+buildbot
2018-02-19 5:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-16 16:34 [binutils-gdb] New class allocate_on_obstack sergiodj+buildbot
2018-02-16 18:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-15 22:04 [binutils-gdb] RISC-V: Fix relocation failure with zero address sections sergiodj+buildbot
2018-02-16 0:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-15 19:14 [binutils-gdb] RISC-V: Give error for ignored pcrel_lo addend sergiodj+buildbot
2018-02-15 21:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-15 15:29 [binutils-gdb] PR ld/22832 on SPARC sergiodj+buildbot
2018-02-15 20:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-15 4:34 [binutils-gdb] delete ada-lang.c::ada_to_fixed_value_create advance declaration sergiodj+buildbot
2018-02-15 5:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-14 19:26 [binutils-gdb] Fix GDB crash after Quit thrown from unwinder sniffer sergiodj+buildbot
2018-02-15 4:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-14 16:14 [binutils-gdb] Constify target_so_ops::bfd_open sergiodj+buildbot
2018-02-15 2:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-14 15:50 [binutils-gdb] Move some declarations to source.h sergiodj+buildbot
2018-02-14 22:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-14 15:37 [binutils-gdb] Return unique_xmalloc_ptr from some solib.c functions sergiodj+buildbot
2018-02-14 19:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-14 15:16 [binutils-gdb] Fix compilation of the BFD sub-directory with a gcc v8 compiler by adding extra casts sergiodj+buildbot
2018-02-14 17:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-13 22:52 [binutils-gdb] x86: Properly check building shared library sergiodj+buildbot
2018-02-14 3:48 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-13 17:36 [binutils-gdb] Use enum flags for flags passed to openp sergiodj+buildbot
2018-02-14 2:10 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-13 15:51 [binutils-gdb] x86-64: Generate branch with PLT32 relocation sergiodj+buildbot
2018-02-14 0:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-13 13:43 [binutils-gdb] Fix compile time warning messages from gcc version 8 about cast between incompatible function types sergiodj+buildbot
2018-02-13 20:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-13 13:31 [binutils-gdb] WebAssembly: Disable subdirectory configuration for unsupported LD sergiodj+buildbot
2018-02-13 19:13 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-13 13:28 [binutils-gdb] WebAssembly: Correct an `index' global shadowing error for pre-4.8 GCC sergiodj+buildbot
2018-02-13 16:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-13 6:47 [binutils-gdb] Fix prefix of maint set/show per-command sergiodj+buildbot
2018-02-13 7:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-13 0:11 [binutils-gdb] gdb: Remove cleanup from dw2_do_instantiate_symtab sergiodj+buildbot
2018-02-13 2:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-12 15:14 [binutils-gdb] MIPS: Fix encoding for MIPSr6 sigrie instruction sergiodj+buildbot
2018-02-12 22:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-12 13:36 [binutils-gdb] Add support for reading msdos MZ executables sergiodj+buildbot
2018-02-12 19:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-12 12:16 [binutils-gdb] oops - actually remove the assignment this time: bfd/elf32-nds32.c:9693]: (warning) Redundant assignment of 'irel->r_addend' to itself sergiodj+buildbot
2018-02-12 15:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-09 19:26 [binutils-gdb] Don't reference past the end of the vector sergiodj+buildbot
2018-02-11 2:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-09 17:02 [binutils-gdb] x86: Add is_solaris to elf_x86_target_os sergiodj+buildbot
2018-02-11 4:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-09 15:25 [binutils-gdb] btrace: reword error messages sergiodj+buildbot
2018-02-10 23:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-09 15:12 [binutils-gdb] btrace: check perf_event_paranoid sergiodj+buildbot
2018-02-10 21:49 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-09 15:00 [binutils-gdb] btrace: improve enable error messages sergiodj+buildbot
2018-02-10 19:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-09 14:22 [binutils-gdb] btrace: prepare for throwing exceptions when enabling btrace sergiodj+buildbot
2018-02-10 11:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-09 12:24 [binutils-gdb] gdb/NEWS: Clarify the news entry for "rbreak" in GDB 8.1 sergiodj+buildbot
2018-02-09 20:49 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-08 23:17 [binutils-gdb] Remove cleanups from solib.c sergiodj+buildbot
2018-02-09 12:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-08 22:04 [binutils-gdb] Use std::string in maybe_expand sergiodj+buildbot
2018-02-09 5:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-08 20:47 [binutils-gdb] Class-ify macro_buffer sergiodj+buildbot
2018-02-09 3:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-08 20:13 [binutils-gdb] Remove cleanups from macro_define_command sergiodj+buildbot
2018-02-09 6:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-08 19:32 [binutils-gdb] Return unique_xmalloc_ptr from macro scope functions sergiodj+buildbot
2018-02-09 1:24 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-08 19:05 [binutils-gdb] Remove a cleanup from gdbserver sergiodj+buildbot
2018-02-08 20:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-07 14:04 [binutils-gdb] Fix type of values representing optimized out static members sergiodj+buildbot
2018-02-07 15:30 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-07 4:11 [binutils-gdb] Revert "PowerPC PLT speculative execution barriers" sergiodj+buildbot
2018-02-07 12:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-07 1:08 [binutils-gdb] RISC-V: Eliminate spurious error w/ reloc truncated message sergiodj+buildbot
2018-02-07 9:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-06 20:29 [binutils-gdb] Remove some $ARCH_read_pc and $ARCH_write_pc sergiodj+buildbot
2018-02-07 7:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-06 17:43 [binutils-gdb] Fix PR ld/22263 on SPARC sergiodj+buildbot
2018-02-07 5:06 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-06 17:17 [binutils-gdb] Improve the find_nearest_line function for the MIPS target so that it tries harder to find a function name sergiodj+buildbot
2018-02-07 0:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-06 16:48 [binutils-gdb] Prevent attempts to call strncpy with a zero-length field by chacking the size of debuglink sections sergiodj+buildbot
2018-02-06 21:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-06 16:04 [binutils-gdb] Allow the find_abstract_instance_name() function in the BFD library to also return file and line number information sergiodj+buildbot
2018-02-06 18:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-05 19:45 [binutils-gdb] ppc64: Fix stwux encoding sergiodj+buildbot
2018-02-06 8:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-05 18:56 [binutils-gdb] [PR22764][LD][AARCH64]Allow R_AARCH64_ABS16 and R_AARCH64_ABS32 against absolution symbol or undefine symbol in shared object sergiodj+buildbot
2018-02-06 7:08 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-05 18:11 [binutils-gdb] Remove myself as a write-after-approval GDB maintainer sergiodj+buildbot
2018-02-06 5:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-05 17:05 [binutils-gdb] x86: Remove the unused _GLOBAL_OFFSET_TABLE_ sergiodj+buildbot
2018-02-06 3:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-05 14:42 [binutils-gdb] RISC-V/BFD: Correct a missing initializer error with pre-4.7 GCC sergiodj+buildbot
2018-02-05 23:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-05 14:29 [binutils-gdb] MIPS/BFD: Correctly report unsupported `.reginfo' section size sergiodj+buildbot
2018-02-05 21:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-05 8:46 [binutils-gdb] Align natural-format register values to the same column sergiodj+buildbot
2018-02-05 11:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-05 5:03 [binutils-gdb] Move comment in gdb/dwarf2read.c::dwarf2_physname sergiodj+buildbot
2018-02-05 6:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-03 17:11 [binutils-gdb] gdb/testsuite: Remove use of dejagnu cleanup proc sergiodj+buildbot
2018-02-03 19:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-02 20:58 [binutils-gdb] RISC-V: Fix --wrap and relaxation conflict sergiodj+buildbot
2018-02-02 22:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-02 19:21 [binutils-gdb] MI: Allow non-raw varobj evaluation sergiodj+buildbot
2018-02-02 20:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-02 3:50 [binutils-gdb] Do not classify C struct members as a filename sergiodj+buildbot
2018-02-02 5:13 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-01 16:11 [binutils-gdb] Rewrite arm_record_coproc_data_proc and arm_record_data_proc_misc_ld_str sergiodj+buildbot
2018-02-01 21:08 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-01 15:47 [binutils-gdb] set ret signed in arm_record_extension_space sergiodj+buildbot
2018-02-01 19:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-02-01 15:05 [binutils-gdb] Fix gdb.base/attach.exp fails when gdb is configured --with-sysroot=/ sergiodj+buildbot
2018-02-01 17:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-31 15:21 [binutils-gdb] gdb: Fix remote-sim/MinGW/Darwin builds sergiodj+buildbot
2018-02-01 4:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-31 13:56 [binutils-gdb] Check if __start/__stop symbols are referenced by shared objects sergiodj+buildbot
2018-01-31 23:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-31 13:56 [binutils-gdb] (Ada) C++fy conditional string when catching exception sergiodj+buildbot
2018-01-31 19:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-31 13:41 [binutils-gdb] (Ada) Add gdb-mi support for stopping at start of exception handler sergiodj+buildbot
2018-01-31 21:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-31 13:03 [binutils-gdb] (Ada) Add testcase for catch assert with condition sergiodj+buildbot
2018-01-31 14:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-31 7:35 [binutils-gdb] internal-error using '@' (repeat) operator on array of dynamic objects sergiodj+buildbot
2018-01-31 9:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-30 18:05 [binutils-gdb] Improve junk file removal in source tarball creation script sergiodj+buildbot
2018-01-30 23:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-30 16:06 [binutils-gdb] Per-inferior target_terminal state, fix PR gdb/13211, more sergiodj+buildbot
2018-01-30 19:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-30 15:53 [binutils-gdb] linux-nat: Eliminate custom target_terminal_{inferior, ours}, stop using set_sigint_trap sergiodj+buildbot
2018-01-30 17:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-30 8:44 [binutils-gdb] PR22758, FAIL: Run pr22393-2 sergiodj+buildbot
2018-01-30 11:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-29 18:21 [binutils-gdb] Don't call "detach_inferior" on "remote_follow_fork" sergiodj+buildbot
2018-01-29 20:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-29 13:45 [binutils-gdb] Prevent patch remnants from being included in release tarballs sergiodj+buildbot
2018-01-29 15:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-28 17:24 [binutils-gdb] Remove dwarf2_per_objfile_free and use after free of dwarf2_per_objfile sergiodj+buildbot
2018-01-28 18:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-27 17:07 [binutils-gdb] Avoid compilation errors in MinGW native builds of GDB sergiodj+buildbot
2018-01-27 21:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-26 15:05 [binutils-gdb] Add myself as a write-after-approval GDB maintainer sergiodj+buildbot
2018-01-26 16:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-26 6:02 [binutils-gdb] Define __start/__stop symbols when there is only a dynamic def sergiodj+buildbot
2018-01-26 9:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-26 5:34 [binutils-gdb] PowerPC64 .branch_lt size change leads to "stubs don't match calculated size" sergiodj+buildbot
2018-01-26 6:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-25 11:50 [binutils-gdb] PR22746, crash when running 32-bit objdump on corrupted file sergiodj+buildbot
2018-01-25 15:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-25 11:35 [binutils-gdb] Fix PR ld/22727 (TLS breakage in PIC/PIE mode on SPARC) sergiodj+buildbot
2018-01-25 13:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-24 18:49 [binutils-gdb] Fix GCC PR83906 - [8 Regression] Random FAIL: libstdc++-prettyprinters/80276.cc whatis p4 sergiodj+buildbot
2018-01-25 1:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-24 16:51 [binutils-gdb] [LD][AARCH64]Add group relocations to create PC-relative offset sergiodj+buildbot
2018-01-24 23:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-24 16:36 [binutils-gdb] [GAS][AARCH64]Add group relocations to create PC-relative offset sergiodj+buildbot
2018-01-24 20:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-23 19:18 [binutils-gdb] MIPS/BFD: Update a stale `mips_elf32_section_processing' reference sergiodj+buildbot
2018-01-24 17:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-23 17:39 [binutils-gdb] Enable Intel PCONFIG instruction sergiodj+buildbot
2018-01-24 14:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-23 17:26 [binutils-gdb] Enable Intel WBNOINVD instruction sergiodj+buildbot
2018-01-24 12:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-23 17:23 [binutils-gdb] s390: if -> gdb_assert for tdesc_has_registers check sergiodj+buildbot
2018-01-23 23:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-23 16:25 [binutils-gdb] s390: Move tdesc validation to separate function sergiodj+buildbot
2018-01-23 22:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-23 15:13 [binutils-gdb] s390: Move record-replay to s390-tdep.c sergiodj+buildbot
2018-01-24 7:13 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-23 14:44 [binutils-gdb] s390: gdbarch_tdep.have_* int -> bool sergiodj+buildbot
2018-01-23 18:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-23 14:44 [binutils-gdb] s390: gdbarch_tdep add hook for syscall record sergiodj+buildbot
2018-01-24 3:48 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-23 14:30 [binutils-gdb] s390: Hook s390 into OSABI mechanism sergiodj+buildbot
2018-01-24 1:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-23 13:15 [binutils-gdb] s390: Allocate gdbarch & tdep at start of gdbarch_init sergiodj+buildbot
2018-01-23 16:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-22 15:56 [binutils-gdb] MAINTAINERS: Update my company e-mail address sergiodj+buildbot
2018-01-23 2:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-22 13:34 [binutils-gdb] regcache_cooked_read -> regcache->cooked_read sergiodj+buildbot
2018-01-22 22:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-22 12:07 [binutils-gdb] Remove mt port sergiodj+buildbot
2018-01-22 16:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-22 11:47 [binutils-gdb] Replace regcache_raw_read with regcache->raw_read sergiodj+buildbot
2018-01-22 18:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-22 5:10 [binutils-gdb] Ada/DWARF: Assume the Ada compiler produces descriptive type attributes sergiodj+buildbot
2018-01-22 8:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-22 4:32 [binutils-gdb] wrong line number in breakpoint location sergiodj+buildbot
2018-01-22 6:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-21 19:13 [binutils-gdb] gdb: Don't store a thread-id for floating varobj sergiodj+buildbot
2018-01-22 3:30 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-21 17:01 [binutils-gdb] gdb: PR mi/20395: Fix -var-update for registers in frames 1 and up sergiodj+buildbot
2018-01-21 22:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-21 16:50 [binutils-gdb] gdb: New API for tracking innermost block sergiodj+buildbot
2018-01-21 20:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-21 16:42 [binutils-gdb] gdb: Remove out of date comment sergiodj+buildbot
2018-01-22 0:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-21 16:05 [binutils-gdb] gdb: Remove duplicate declaration of global innermost_block sergiodj+buildbot
2018-01-21 18:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-20 22:46 [binutils-gdb] x86: Check the versioned __tls_get_addr symbol sergiodj+buildbot
2018-01-21 1:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-19 22:47 [binutils-gdb] Fix qualified name lookup for Rust sergiodj+buildbot
2018-01-20 22:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-19 19:19 [binutils-gdb] S390: Fix infcalls in s390-vregs test case sergiodj+buildbot
2018-01-20 20:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-19 19:04 [binutils-gdb] gdb: Fix ia64 defining TRAP_HWBKPT before including gdb_wait.h sergiodj+buildbot
2018-01-20 15:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-19 17:48 [binutils-gdb] Make linux_nat_detach/thread_db_detach use the inferior parameter sergiodj+buildbot
2018-01-20 13:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-19 17:34 [binutils-gdb] Pass inferior down to target_detach and to_detach sergiodj+buildbot
2018-01-20 11:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-19 13:35 [binutils-gdb] S390: Improve comments for s390-tdbregs test case sergiodj+buildbot
2018-01-20 6:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-19 11:05 [binutils-gdb] Update French translation in bfd sub-directory sergiodj+buildbot
2018-01-20 4:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-19 10:00 [binutils-gdb] Don't pass -m32 to libcc1 on arm-linux sergiodj+buildbot
2018-01-20 0:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-19 9:33 [binutils-gdb] Find arm-linux-gnueabi(hf)?-gcc in compile sergiodj+buildbot
2018-01-19 23:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-18 19:09 [binutils-gdb] GDB testsuite: Re-enable -fdiagnostics-color=never sergiodj+buildbot
2018-01-19 19:44 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-18 15:43 [binutils-gdb] Make abbrev_table::abbrevs private sergiodj+buildbot
2018-01-19 15:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-18 12:35 [binutils-gdb] Call cooked_read in ppu2spu_prev_register sergiodj+buildbot
2018-01-19 12:49 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-18 12:14 [binutils-gdb] PowerPC PLT stub alignment fixes sergiodj+buildbot
2018-01-19 10:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 23:20 [binutils-gdb] Fix warning on gdb/compile/compile.c (C++-ify "triplet_rx") sergiodj+buildbot
2018-01-19 4:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 22:21 [binutils-gdb] RISC-V: Fix bug in prior addi/c.nop patch sergiodj+buildbot
2018-01-19 2:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 20:21 [binutils-gdb] Remove symbolp typedef sergiodj+buildbot
2018-01-18 23:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 20:16 [binutils-gdb] Allocate abbrev_table with new sergiodj+buildbot
2018-01-18 15:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 19:57 [binutils-gdb] Change dwarf2_cu::method_info to be a std::vector sergiodj+buildbot
2018-01-18 19:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 19:45 [binutils-gdb] Allocate dwarf2_cu with new sergiodj+buildbot
2018-01-18 17:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 19:20 [binutils-gdb] Unify new_symbol and new_symbol_full sergiodj+buildbot
2018-01-18 13:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 18:49 [binutils-gdb] Fix gdb segv when objfile can't be opened sergiodj+buildbot
2018-01-18 11:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 17:59 [binutils-gdb] Make linux_ptrace_attach_fail_reason return an std::string sergiodj+buildbot
2018-01-18 9:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 17:04 [binutils-gdb] Replace CET bit with IBT and SHSTK bits sergiodj+buildbot
2018-01-18 5:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 13:48 [binutils-gdb] configure: Fix test for fs_base/gs_base in <sys/user.h> sergiodj+buildbot
2018-01-17 23:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 11:56 [binutils-gdb] Relax gdb.compile/compile.exp to match the address printed for frame sergiodj+buildbot
2018-01-17 15:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-17 11:10 [binutils-gdb] Warning fix sergiodj+buildbot
2018-01-17 12:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-16 13:03 [binutils-gdb] Update translations for various binutils components sergiodj+buildbot
2018-01-16 14:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-16 9:25 [binutils-gdb] Mark register unavailable when PTRACE_PEEKUSER fails sergiodj+buildbot
2018-01-16 11:44 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-15 23:14 [binutils-gdb] gdb/common/signals-state-save-restore.c: Fix typos sergiodj+buildbot
2018-01-16 2:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-15 12:32 [binutils-gdb] Update Ukranian translations for bfd, binutils, gas, gold, ld and opcodes sergiodj+buildbot
2018-01-15 13:53 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-13 16:17 [binutils-gdb] Update notes on how to make a release sergiodj+buildbot
2018-01-14 4:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-13 15:45 [binutils-gdb] Update pot files sergiodj+buildbot
2018-01-14 1:53 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-13 14:31 [binutils-gdb] Bump version number to 2.30.51 sergiodj+buildbot
2018-01-13 23:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-13 13:46 [binutils-gdb] Add note about 2.30 branch creation to changelogs sergiodj+buildbot
2018-01-13 21:24 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-13 0:00 [binutils-gdb] gdb/testsuite: Don't attempt tests if they fail to compile sergiodj+buildbot
2018-01-13 18:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-12 23:43 [binutils-gdb] Install and generate docs for gdb-add-index sergiodj+buildbot
2018-01-13 16:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-12 22:32 [binutils-gdb] Use the correct value for the offset of 'kve_protection' sergiodj+buildbot
2018-01-13 13:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-12 19:19 [binutils-gdb] Fix GDB hang with remote after error from resume sergiodj+buildbot
2018-01-13 3:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-12 11:55 [binutils-gdb] Fix override of common symbols for a.out sergiodj+buildbot
2018-01-12 23:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-12 4:24 [binutils-gdb] ld: Create a new LOAD segment for separate code segment sergiodj+buildbot
2018-01-12 12:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-12 2:29 [binutils-gdb] gdb_compile_shlib: Only consider shlib= options when building executables sergiodj+buildbot
2018-01-12 7:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-11 23:57 [binutils-gdb] Ignore dynamic references on forced local symbols sergiodj+buildbot
2018-01-12 5:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-11 19:05 [binutils-gdb] gdb.base/breakpoint-in-ro-region.exp regression on sss targets (PR gdb/22583) sergiodj+buildbot
2018-01-12 0:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-11 18:02 [binutils-gdb] ld: Keep PREINIT_ARRAY/INIT_ARRAY/FINI_ARRAY sections for -r --gc-sections sergiodj+buildbot
2018-01-11 22:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-11 5:36 [binutils-gdb] Remove VL variants for 4FMAPS and 4VNNIW insns sergiodj+buildbot
2018-01-11 15:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-11 1:53 [binutils-gdb] language_get_symbol_name_matcher -> get_symbol_name_matcher sergiodj+buildbot
2018-01-11 7:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-11 1:05 [binutils-gdb] Ada: make verbatim matcher override other language matchers (PR gdb/22670) sergiodj+buildbot
2018-01-11 5:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-11 0:21 [binutils-gdb] Fix gdb.ada/complete.exp's "complete break ada" test (PR gdb/22670) sergiodj+buildbot
2018-01-11 3:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-10 23:32 [binutils-gdb] Fix gdb.ada/bp_c_mixed_case.exp (PR gdb/22670) sergiodj+buildbot
2018-01-11 0:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-10 14:58 [binutils-gdb] x86: fix Disp8 handling for scalar AVX512_4FMAPS insns sergiodj+buildbot
2018-01-10 19:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-10 14:11 [binutils-gdb] x86: fix Disp8 handling for AVX512VL VPCMP*{B, W} variants sergiodj+buildbot
2018-01-10 16:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-10 0:28 [binutils-gdb] Support 'info proc' for native FreeBSD processes sergiodj+buildbot
2018-01-10 7:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-09 22:14 [binutils-gdb] Support 'info proc' for FreeBSD process core dumps sergiodj+buildbot
2018-01-09 23:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-09 14:53 [binutils-gdb] [Arm] Add CSDB instruction sergiodj+buildbot
2018-01-09 18:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-09 10:03 [binutils-gdb] Fix breakpoint add on inlined function using function name sergiodj+buildbot
2018-01-09 14:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-08 13:11 [binutils-gdb] x86: Properly encode vmovd with 64-bit memeory sergiodj+buildbot
2018-01-08 21:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-08 11:41 [binutils-gdb] Fix GDBserver build failure when $development is false sergiodj+buildbot
2018-01-08 15:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-08 10:42 [binutils-gdb] Fix GDB build failure when $development is false sergiodj+buildbot
2018-01-08 14:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-08 10:02 [binutils-gdb] Relax expected output in gdb.ada/access_tagged_param.exp test sergiodj+buildbot
2018-01-08 12:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-08 5:16 [binutils-gdb] (Ada) Fix print of array using non-contiguous enumeration indexes sergiodj+buildbot
2018-01-08 7:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-07 19:29 [binutils-gdb] Remove dwarf2_per_objfile global sergiodj+buildbot
2018-01-08 4:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-07 18:45 [binutils-gdb] Replace objfile field in dwarf2_cu and dwarf2_per_cu_data with dwarf2_per_objfile sergiodj+buildbot
2018-01-08 2:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-07 18:03 [binutils-gdb] Make parse_debug_format_options return an std::string sergiodj+buildbot
2018-01-08 0:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-07 17:08 [binutils-gdb] Replace VEC(converted_character_d) with std::vector sergiodj+buildbot
2018-01-07 22:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-07 15:59 [binutils-gdb] Remove xmethod_worker::clone sergiodj+buildbot
2018-01-07 18:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-07 14:48 [binutils-gdb] C++ify xmethod_worker, get rid of VEC(xmethod_worker_ptr) sergiodj+buildbot
2018-01-07 16:48 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-06 2:13 [binutils-gdb] RISC-V: Print symbol address for jalr w/ zero offset sergiodj+buildbot
2018-01-06 9:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-05 18:57 [binutils-gdb] Fix gdb/spu-tdep.c build breakage sergiodj+buildbot
2018-01-06 2:24 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-05 17:13 [binutils-gdb] Fix gdb.ada/info_addr_mixed_case.exp (PR gdb/22670) sergiodj+buildbot
2018-01-05 23:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-05 13:34 [binutils-gdb] (Ada) problem printing renaming which references a subprogram parameter sergiodj+buildbot
2018-01-05 21:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-05 11:59 [binutils-gdb] (Ada) Fix Length attribute on array access sergiodj+buildbot
2018-01-05 18:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-05 7:31 [binutils-gdb] (Ada) Remove printing of array's first index when unneeded sergiodj+buildbot
2018-01-05 14:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-05 5:59 [binutils-gdb] Bump version to 8.1.50.DATE-git sergiodj+buildbot
2018-01-05 10:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-04 22:38 [binutils-gdb] RISC-V: Add 2 missing privileged registers sergiodj+buildbot
2018-01-05 0:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-04 11:13 [binutils-gdb] gdb.ada/maint_with_ada.exp: New testcase sergiodj+buildbot
2018-01-04 18:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-04 10:28 [binutils-gdb] Add new gdb.ada/bp_c_mixed_case testcase for PR gdb/22670 sergiodj+buildbot
2018-01-04 16:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-03 20:29 [binutils-gdb] Create pseudo sections for FreeBSD NT_PROCSTAT_(PROC|FILES|VMMAP) notes sergiodj+buildbot
2018-01-03 21:53 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-03 7:50 [binutils-gdb] Update year range in copyright notice of binutils files sergiodj+buildbot
2018-01-03 9:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-03 4:17 [binutils-gdb] Unbreak spurious fails in gdb.base/step-line.exp sergiodj+buildbot
2018-01-03 6:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-02 17:37 [binutils-gdb] Fix compile time warning (in the ARM simulator) about a print statement with insufficient arguments sergiodj+buildbot
2018-01-03 0:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-02 9:37 [binutils-gdb] [gdb/Ada] slices of arrays with dynamic strides sergiodj+buildbot
2018-01-02 20:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-02 8:44 [binutils-gdb] Add support for dynamic DW_AT_byte_stride sergiodj+buildbot
2018-01-02 17:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-02 7:54 [binutils-gdb] treat Ada DW_TAG_unspecified_type DIEs as stub types sergiodj+buildbot
2018-01-02 15:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-02 6:58 [binutils-gdb] Update copyright year range in all GDB files sergiodj+buildbot
2018-01-02 13:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-02 4:44 [binutils-gdb] Update copyright year in version message of GDB, GDBserver and GDBreplay sergiodj+buildbot
2018-01-02 7:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2018-01-02 3:57 [binutils-gdb] Yearly rotation of the gdb/ChangeLog file sergiodj+buildbot
2018-01-02 5:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-31 11:04 [binutils-gdb] Avoid indexing std::vector past the end sergiodj+buildbot
2017-12-31 16:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-31 4:57 [binutils-gdb] Only ignore -Wenum-compare-switch if it exists sergiodj+buildbot
2017-12-31 6:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-30 7:02 [binutils-gdb] Make mapped_debug_names and mapped_index final sergiodj+buildbot
2017-12-30 8:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-30 3:17 [binutils-gdb] Remove unnecessary call to get_thread_db_info sergiodj+buildbot
2017-12-30 5:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-28 21:41 [binutils-gdb] RISC-V: Add missing privileged spec registers sergiodj+buildbot
2017-12-28 23:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-27 17:51 [binutils-gdb] tdesc: handle arbitrary strings in tdesc_register_in_reggroup_p sergiodj+buildbot
2017-12-28 0:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-27 15:46 [binutils-gdb] reggroups: Convert reggroups from post_init to pre_init sergiodj+buildbot
2017-12-27 19:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-27 15:03 [binutils-gdb] reggroups: Add test and docs for `info reg $reggroup` feature sergiodj+buildbot
2017-12-27 16:24 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-23 21:51 [binutils-gdb] Add ATTRIBUTE_PRINTF to printf_field_type_assignment sergiodj+buildbot
2017-12-23 23:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-21 23:57 [binutils-gdb] Do not emit "field_type" var if not needed on "maint print c-tdesc" sergiodj+buildbot
2017-12-22 1:44 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-20 21:59 [binutils-gdb] RISC-V: Add compressed instruction hints, and a few misc cleanups sergiodj+buildbot
2017-12-21 0:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-20 13:37 [binutils-gdb] [Cell/B.E.] Fix regression due to gdbarch_significant_addr_bit sergiodj+buildbot
2017-12-20 16:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-18 22:34 [binutils-gdb] PR22626, invalid dynindx used for dynamic relocs against section syms sergiodj+buildbot
2017-12-18 23:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-18 11:26 [binutils-gdb] x86: fold certain AVX and AVX2 templates sergiodj+buildbot
2017-12-18 14:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-18 10:42 [binutils-gdb] x86: fold RegXMM/RegYMM/RegZMM into RegSIMD sergiodj+buildbot
2017-12-18 13:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-18 9:35 [binutils-gdb] x86: drop FloatReg and FloatAcc sergiodj+buildbot
2017-12-18 12:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-18 8:56 [binutils-gdb] x86: replace Reg8, Reg16, Reg32, and Reg64 sergiodj+buildbot
2017-12-18 10:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-18 4:51 [binutils-gdb] improved error message when getting an exception printing a variable sergiodj+buildbot
2017-12-18 8:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-18 4:13 [binutils-gdb] (Ada) crash assigning to record component which is an array sergiodj+buildbot
2017-12-18 6:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-18 3:22 [binutils-gdb] Ada: fix bad handling in ada_convert_actual sergiodj+buildbot
2017-12-18 4:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-16 23:29 [binutils-gdb] gdb: Fix function parameter alignments in or1k-tdep.c sergiodj+buildbot
2017-12-17 1:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-16 3:54 [binutils-gdb] Fix ARI warning on gdb/typeprint.c:whatis_exp sergiodj+buildbot
2017-12-16 6:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-15 19:31 [binutils-gdb] Update documentation regarding the bfd returned by bfd_openr_next_archived_file sergiodj+buildbot
2017-12-15 21:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-15 18:35 [binutils-gdb] Fix PR19061, gdb hangs/spins-on-cpu when debugging any program on Alpha sergiodj+buildbot
2017-12-15 19:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-15 11:47 [binutils-gdb] Skip 'maintenance check xml-descriptions' if XML is disabled sergiodj+buildbot
2017-12-15 15:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-15 11:06 [binutils-gdb] Skip parse_memory_map_tests if XML is disabled sergiodj+buildbot
2017-12-15 12:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-15 9:44 [binutils-gdb] Fix disassembly for PowerPC sergiodj+buildbot
2017-12-15 11:10 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-15 8:34 [binutils-gdb] x86: drop stray CheckRegSize uses sergiodj+buildbot
2017-12-15 9:47 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-14 21:04 [binutils-gdb] py-breakpoint: Don't use the 'p' PyArg_ParseTupleAndKeywords format specifier sergiodj+buildbot
2017-12-14 22:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-14 13:12 [binutils-gdb] Update the address of the FSF in the copyright notice of files which were using the old address sergiodj+buildbot
2017-12-14 14:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-14 5:57 [binutils-gdb] Ada: unable to compare strings (Attempt to compare array with non-array) sergiodj+buildbot
2017-12-14 7:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-14 4:30 [binutils-gdb] (Ada) Add support for task switching when debugging core files sergiodj+buildbot
2017-12-14 6:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-13 23:20 [binutils-gdb] Add missing RISC-V fsrmi and fsflagsi instructions sergiodj+buildbot
2017-12-14 3:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-13 17:54 [binutils-gdb] Fix regression: expression completer and scope operator (PR gdb/22584) sergiodj+buildbot
2017-12-13 22:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-13 16:11 [binutils-gdb] [BFD][AARCH64]Disallow R_AARCH64_ABS32(LP64) & R_AARCH64_ABS16 in const section of shared object sergiodj+buildbot
2017-12-13 19:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-13 15:34 [binutils-gdb] gdb: Fix ARI warnings in or1k-tdep.c sergiodj+buildbot
2017-12-13 18:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-13 14:53 [binutils-gdb] Fix typo in gdb_ari.sh sergiodj+buildbot
2017-12-13 17:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-13 13:44 [binutils-gdb] This patch enables disassembler_needs_relocs for PRU. It is needed to print correct symbols when disassembling arguments of "call" instructions with a relocation sergiodj+buildbot
2017-12-13 15:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-13 12:54 [binutils-gdb] S/390: Fix (some) PIE+undef weak failures sergiodj+buildbot
2017-12-13 13:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-12 20:43 [binutils-gdb] sim: or1k: add cgen generated files sergiodj+buildbot
2017-12-13 3:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-12 19:10 [binutils-gdb] sim: cgen: add MUL2OFSI and MUL1OFSI functions (needed for OR1K l.mul[u]) sergiodj+buildbot
2017-12-13 0:53 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-12 17:32 [binutils-gdb] Add gdb for or1k build sergiodj+buildbot
2017-12-12 21:30 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-12 15:17 [binutils-gdb] gdb: Add OpenRISC or1k and or1knd target support sergiodj+buildbot
2017-12-12 16:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-12 13:33 [binutils-gdb] PR22576, ppc64_skip_trampoline_code uses wrong r2 for EXEC_REVERSE sergiodj+buildbot
2017-12-12 14:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-12 2:28 [binutils-gdb] remote: Return NULL extra_info/name if they are empty sergiodj+buildbot
2017-12-12 4:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-11 16:19 [binutils-gdb] [Binutils][Objdump]Check symbol section information while search a mapping symbol backward sergiodj+buildbot
2017-12-11 18:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-11 14:55 [binutils-gdb] [MPFR] Fix regression on 32-bit host systems sergiodj+buildbot
2017-12-11 15:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-11 8:38 [binutils-gdb] Adapt gdb.ada/variant_record_packed_array.exp to accept reordered components sergiodj+buildbot
2017-12-11 9:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-11 7:04 [binutils-gdb] (Ada) change tagged types base_address computation sergiodj+buildbot
2017-12-11 8:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-10 22:37 [binutils-gdb] Typo fix sergiodj+buildbot
2017-12-10 23:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-09 6:59 [binutils-gdb] dwarf2read.c: Rewrite/simplify mock_mapped_index sergiodj+buildbot
2017-12-09 16:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-09 5:22 [binutils-gdb] dwarf2read.c:mapped_index, use gdb::array_view, simplify symbol table sergiodj+buildbot
2017-12-09 14:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-09 4:00 [binutils-gdb] DWARF-5: .debug_names index consumer sergiodj+buildbot
2017-12-09 12:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-09 2:18 [binutils-gdb] Refactor: Move some generic code out of .gdb_index code sergiodj+buildbot
2017-12-09 9:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-09 0:04 [binutils-gdb] cc-with-tweaks.sh: Use gdb-add-index.sh sergiodj+buildbot
2017-12-09 5:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-08 20:59 [binutils-gdb] Fix thinko on dtrace-probe.c:dtrace_process_dof_probe sergiodj+buildbot
2017-12-09 1:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-08 19:17 [binutils-gdb] Adjust breakpoint address by clearing non-significant bits sergiodj+buildbot
2017-12-08 22:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-08 16:06 [binutils-gdb] Fix PR 22567: set SAL .section in minsym_found sergiodj+buildbot
2017-12-08 17:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-08 6:55 [binutils-gdb] Add aix 64-bit check to bfd_get_sign_extend_vma sergiodj+buildbot
2017-12-08 7:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-08 0:32 [binutils-gdb] Validate explicit locations with early termination sergiodj+buildbot
2017-12-08 5:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-07 23:49 [binutils-gdb] Record nested types sergiodj+buildbot
2017-12-08 4:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-07 22:54 [binutils-gdb] Fix wrong prefix in py-breakpoint.exp sergiodj+buildbot
2017-12-08 3:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-07 22:13 [binutils-gdb] Fix regression in "commands" sergiodj+buildbot
2017-12-08 1:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-07 19:41 [binutils-gdb] Fix build with g++ 6.3.1 sergiodj+buildbot
2017-12-08 0:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-07 17:45 [binutils-gdb] Add virtual destructor to selftest sergiodj+buildbot
2017-12-07 21:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-06 23:13 [binutils-gdb] target_set_syscall_catchpoint, use gdb::array_view and bool sergiodj+buildbot
2017-12-07 2:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-06 8:12 [binutils-gdb] dyn_relocs tidy sergiodj+buildbot
2017-12-06 19:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-06 5:26 [binutils-gdb] Make tdesc_type::u::u::fields an std::vector sergiodj+buildbot
2017-12-06 12:48 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-06 2:59 [binutils-gdb] Split tdesc_type into multiple classes sergiodj+buildbot
2017-12-06 15:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-06 1:26 [binutils-gdb] Make tdesc_type::name an std::string sergiodj+buildbot
2017-12-06 11:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-06 1:05 [binutils-gdb] Make tdesc_feature::types an std::vector sergiodj+buildbot
2017-12-06 10:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-06 0:44 [binutils-gdb] Make tdesc_reg string fields std::string sergiodj+buildbot
2017-12-06 8:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-06 0:22 [binutils-gdb] Make target_desc::features an std::vector sergiodj+buildbot
2017-12-06 4:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-05 23:22 [binutils-gdb] Make target_desc::compatible an std::vector sergiodj+buildbot
2017-12-06 3:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-05 22:53 [binutils-gdb] Make target_desc::properties an std::vector sergiodj+buildbot
2017-12-06 1:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-05 22:06 [binutils-gdb] Redefine gdb_static_assert as static_assert sergiodj+buildbot
2017-12-05 23:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-04 18:58 [binutils-gdb] Implement "-a" command line option for gcore sergiodj+buildbot
2017-12-04 22:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-04 18:27 [binutils-gdb] Document new {set, show} dump-excluded-mappings commands sergiodj+buildbot
2017-12-04 21:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-04 12:57 [binutils-gdb] x86 map file textrel sergiodj+buildbot
2017-12-04 15:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 18:49 [binutils-gdb] Remove mem_region_vector typedef sergiodj+buildbot
2017-12-04 14:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 18:21 [binutils-gdb] Make make-target-delegates grok namespace scope op and template params sergiodj+buildbot
2017-12-04 12:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 16:34 [binutils-gdb] Fix gdb.threads/process-dies-while-detaching.exp sergiodj+buildbot
2017-12-04 10:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 13:24 [binutils-gdb] Remove usage of find_inferior in linux_resume sergiodj+buildbot
2017-12-03 22:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 12:00 [binutils-gdb] Remove usage of find_inferior in linux_stabilize_threads sergiodj+buildbot
2017-12-03 19:48 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 10:23 [binutils-gdb] Remove usages of find_inferior calling not_stopped_callback sergiodj+buildbot
2017-12-03 17:08 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 9:36 [binutils-gdb] Remove for_each_inferior sergiodj+buildbot
2017-12-04 3:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 8:58 [binutils-gdb] Update comments sergiodj+buildbot
2017-12-04 0:49 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 8:38 [binutils-gdb] Remove usages of find_inferior that call proceed_one_lwp sergiodj+buildbot
2017-12-03 23:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 7:50 [binutils-gdb] Remove usages of find_inferior in stop_all_lwps sergiodj+buildbot
2017-12-03 21:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 6:09 [binutils-gdb] Remove find_inferior_in_random sergiodj+buildbot
2017-12-03 10:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 4:22 [binutils-gdb] Remove usage of find_inferior in last_thread_of_process_p sergiodj+buildbot
2017-12-03 12:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 3:14 [binutils-gdb] Remove find_inferior_id sergiodj+buildbot
2017-12-03 9:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 2:14 [binutils-gdb] Remove usage of find_inferior in regcache_invalidate_pid sergiodj+buildbot
2017-12-03 4:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-03 1:53 [binutils-gdb] Fix typo in poison.h sergiodj+buildbot
2017-12-03 2:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-02 2:52 [binutils-gdb] Add support for the readnever concept sergiodj+buildbot
2017-12-02 3:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-01 22:25 [binutils-gdb] Revert "Add support for the readnever concept" sergiodj+buildbot
2017-12-01 23:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-01 17:42 [binutils-gdb] Use consistent types for holding instructions, instruction masks, etc sergiodj+buildbot
2017-12-01 18:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-01 13:57 [binutils-gdb] Update GDB's list of maintainers to reflect today's reality sergiodj+buildbot
2017-12-01 15:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-01 12:37 [binutils-gdb] x86: Print dynreloc in readonly section for map file output sergiodj+buildbot
2017-12-01 14:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-01 12:00 [binutils-gdb] Replace mail address with the URL in copyright header sergiodj+buildbot
2017-12-01 13:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-12-01 0:13 [binutils-gdb] New gdb.ada/repeat_dyn testcase sergiodj+buildbot
2017-12-01 9:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-30 17:48 [binutils-gdb] Use boards/local-board.exp more sergiodj+buildbot
2017-12-01 5:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-30 16:51 [binutils-gdb] Fix gdb.linespec/cpls-ops.exp on 32-bit sergiodj+buildbot
2017-12-01 4:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-30 10:44 [binutils-gdb] Fix sol-thread.c compilation on Solaris sergiodj+buildbot
2017-11-30 19:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-30 1:14 [binutils-gdb] Define MPFR_USE_INTMAX_T so that mpfr.h assumes intmax_t is available sergiodj+buildbot
2017-11-30 18:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-29 22:06 [binutils-gdb] Breakpoints in symbols with ABI tags (PR c++/19436) sergiodj+buildbot
2017-11-30 14:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-29 21:46 [binutils-gdb] Make "break foo" find "A::foo", A::B::foo", etc. [C++ and wild matching] sergiodj+buildbot
2017-11-30 12:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-29 14:12 [binutils-gdb] [gdb/testsuite] Fix return type of psymtab-parameter sergiodj+buildbot
2017-11-29 20:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-29 11:10 [binutils-gdb] [gdb/testsuite] Fix wrong return type in tests sergiodj+buildbot
2017-11-29 18:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-28 12:59 [binutils-gdb] Copying symbol type in ld script assignments sergiodj+buildbot
2017-11-29 5:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-28 11:31 [binutils-gdb] Remove REMOTE_OBS sergiodj+buildbot
2017-11-29 1:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-28 6:09 [binutils-gdb] Move target object files to target subdirectory sergiodj+buildbot
2017-11-28 23:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-28 1:23 [binutils-gdb] Move cli object files to cli subdirectory sergiodj+buildbot
2017-11-28 4:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-28 0:24 [binutils-gdb] A simpler way to make the "arch" build directory sergiodj+buildbot
2017-11-28 2:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-27 1:09 [binutils-gdb] python: Fix memleak in do_start_initialization sergiodj+buildbot
2017-11-27 8:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-26 16:58 [binutils-gdb] [spu] Fix single-stepping regression sergiodj+buildbot
2017-11-26 18:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-25 14:48 [binutils-gdb] Fix PR gdb/22491: Regression when setting SystemTap probe semaphores sergiodj+buildbot
2017-11-26 3:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-25 8:52 [binutils-gdb] Add comprehensive C++ operator linespec/location/completion tests sergiodj+buildbot
2017-11-25 21:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-25 4:19 [binutils-gdb] Fix completing an empty string sergiodj+buildbot
2017-11-25 23:30 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-25 3:37 [binutils-gdb] Revert "elf: Properly compute offsets of note descriptor and next note" sergiodj+buildbot
2017-11-25 12:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-25 2:17 [binutils-gdb] Make strcmp_iw NOT ignore whitespace in the middle of tokens sergiodj+buildbot
2017-11-25 18:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 23:37 [binutils-gdb] Workaround build bug with GCC 6.2.1 sergiodj+buildbot
2017-11-25 10:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 22:43 [binutils-gdb] Fix aarch64-none-elf build error sergiodj+buildbot
2017-11-25 8:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 20:32 [binutils-gdb] Create private_thread_info hierarchy sergiodj+buildbot
2017-11-25 5:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
2017-11-25 4:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 19:27 [binutils-gdb] Create private_inferior class hierarchy sergiodj+buildbot
2017-11-25 2:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 16:34 [binutils-gdb] elf: Properly compute offsets of note descriptor and next note sergiodj+buildbot
2017-11-24 22:08 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 14:23 [binutils-gdb] regcache::cooked_read unit test sergiodj+buildbot
2017-11-24 19:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 13:16 [binutils-gdb] gdbserver: add aarch64_create_target_description sergiodj+buildbot
2017-11-24 15:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 13:09 [binutils-gdb] Use flexible target descriptors for aarch64 sergiodj+buildbot
2017-11-24 17:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 11:34 [binutils-gdb] Change value_contents_eq return bool sergiodj+buildbot
2017-11-24 13:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 11:08 [binutils-gdb] Change register_changed_p returns bool sergiodj+buildbot
2017-11-24 12:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 9:50 [binutils-gdb] Change tic6x target descriptions sergiodj+buildbot
2017-11-24 10:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-24 8:04 [binutils-gdb] x86: don't omit disambiguating suffixes from "fi*" sergiodj+buildbot
2017-11-24 9:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-23 16:25 [binutils-gdb] [testsuite] Pass -g3 to clang in gdb.base/macscp.exp sergiodj+buildbot
2017-11-23 23:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-23 14:16 [binutils-gdb] Delete powerpc64 symbol weakref field sergiodj+buildbot
2017-11-23 18:49 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-23 13:28 [binutils-gdb] Rename u.weakdef and make it a circular list sergiodj+buildbot
2017-11-23 17:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-23 10:23 [binutils-gdb] x86: correct UDn sergiodj+buildbot
2017-11-23 15:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-23 0:50 [binutils-gdb] Convert DTrace probe interface to C++ (and perform some cleanups) sergiodj+buildbot
2017-11-23 13:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 23:51 [binutils-gdb] (Ada) ravenscar-thread.c: remove unwanted trailing \n in call to warning sergiodj+buildbot
2017-11-23 12:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 23:03 [binutils-gdb] C++ify osdata sergiodj+buildbot
2017-11-23 10:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 22:42 [binutils-gdb] Show optimized out local variables in "info locals" sergiodj+buildbot
2017-11-23 8:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 22:06 [binutils-gdb] Remove DEF_VEC_P (varobj_p) sergiodj+buildbot
2017-11-23 6:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 21:44 [binutils-gdb] Replace VEC (varobj_update_result) with std::vector sergiodj+buildbot
2017-11-23 5:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 21:06 [binutils-gdb] Basic c++ification of varobj sergiodj+buildbot
2017-11-23 2:10 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 20:57 [binutils-gdb] Make varobj::children an std::vector sergiodj+buildbot
2017-11-23 4:13 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 17:26 [binutils-gdb] [testsuite] Pass pthreads in prepare_for_testing sergiodj+buildbot
2017-11-22 23:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 17:05 [binutils-gdb] [testsuite] Don't skip gdb.dwarf2/pr10770.exp for non-gcc compiler sergiodj+buildbot
2017-11-22 22:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 16:44 [binutils-gdb] Remove Vec_Disp8 field for vgf2p8mulb for AVX flavor sergiodj+buildbot
2017-11-22 21:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 16:02 [binutils-gdb] Remove Vec_Disp8 from vpcompressb and vpexpandb sergiodj+buildbot
2017-11-22 18:49 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 13:23 [binutils-gdb] Fix build with GCC 8: strncpy ->strcpy sergiodj+buildbot
2017-11-22 15:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 2:56 [binutils-gdb] ravenscar: update inferior ptid with event ptid sergiodj+buildbot
2017-11-22 6:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 1:50 [binutils-gdb] (Ada) crash connecting to TSIM simulator sergiodj+buildbot
2017-11-22 5:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-22 0:26 [binutils-gdb] Add multiple-CPU support in ravenscar-thread.c sergiodj+buildbot
2017-11-22 2:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-21 23:01 [binutils-gdb] watchpoint regression debugging with remote protocol (bare metal) sergiodj+buildbot
2017-11-21 23:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-21 18:08 [binutils-gdb] [PowerPC] Detect different long double floating-point formats sergiodj+buildbot
2017-11-21 19:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-21 17:30 [binutils-gdb] gdb.ada/minsyms.exp: Don't hardcode the variable's address sergiodj+buildbot
2017-11-21 18:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-21 14:17 [binutils-gdb] [ARC] Improve printing of pc-relative instructions sergiodj+buildbot
2017-11-21 15:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-21 4:54 [binutils-gdb] Fix build failure in darwin-nat.c sergiodj+buildbot
2017-11-21 7:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-21 2:07 [binutils-gdb] Fix mapped_index::find_name_components_bounds upper bound computation sergiodj+buildbot
2017-11-21 5:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-20 23:31 [binutils-gdb] Fix gdb.base/whatis-ptype-typedefs.exp on 32-bit archs sergiodj+buildbot
2017-11-21 0:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-20 14:38 [binutils-gdb] PR22451, strip no longer works on older object files sergiodj+buildbot
2017-11-20 21:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-20 10:03 [binutils-gdb] Remove usage of find_inferior when calling kill_one_lwp_callback sergiodj+buildbot
2017-11-20 20:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-20 9:29 [binutils-gdb] Remove usages of find_thread when calling need_step_over_p sergiodj+buildbot
2017-11-20 19:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-20 8:09 [binutils-gdb] Remove usage of find_inferior in unsuspend_all_lwps sergiodj+buildbot
2017-11-20 13:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-20 7:13 [binutils-gdb] Remove usage of find_inferior in linux_stabilize_threads sergiodj+buildbot
2017-11-20 14:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-20 5:53 [binutils-gdb] Remove usage of find_inferior in iterate_over_lwps sergiodj+buildbot
2017-11-20 12:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-20 5:03 [binutils-gdb] Remove usage of find_inferior in reset_lwp_ptrace_options_callback sergiodj+buildbot
2017-11-20 10:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-20 4:18 [binutils-gdb] Remove usage of find_inferior in win32-low.c sergiodj+buildbot
2017-11-20 5:06 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-19 1:27 [binutils-gdb] Fix error message typo sergiodj+buildbot
2017-11-19 1:30 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-17 22:40 [binutils-gdb] Make template_symbol derive from symbol sergiodj+buildbot
2017-11-18 4:48 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-17 20:02 [binutils-gdb] Make process_info::syscalls_to_catch an std::vector sergiodj+buildbot
2017-11-17 23:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-17 19:16 [binutils-gdb] Make open_fds an std::vector sergiodj+buildbot
2017-11-17 22:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-17 18:07 [binutils-gdb] (Ada) fix handling of minimal symbols (UNOP_CAST and UNOP_ADDR) sergiodj+buildbot
2017-11-17 20:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-17 12:33 [binutils-gdb] x86: Pass "%F%P:" to linker callback in case of error sergiodj+buildbot
2017-11-17 18:47 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-17 2:47 [binutils-gdb] ada-lang.c::ada_value_cast: remove unused parameter noside sergiodj+buildbot
2017-11-17 17:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 23:48 [binutils-gdb] Test breakpoint commands w/ "continue" + Ctrl-C sergiodj+buildbot
2017-11-17 16:08 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 23:37 [binutils-gdb] Don't ever Quit out of resume sergiodj+buildbot
2017-11-17 13:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 20:25 [binutils-gdb] Fix testing gdb.rust/modules.exp against gdbserver sergiodj+buildbot
2017-11-17 8:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 19:34 [binutils-gdb] Refactor endian handling in DFP routines sergiodj+buildbot
2017-11-17 5:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 18:10 [binutils-gdb] Correct AArch64 crypto dependencies sergiodj+buildbot
2017-11-17 0:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 17:52 [binutils-gdb] Add assembler and disassembler support for the new Armv8.4-a instructions for AArch64 sergiodj+buildbot
2017-11-16 23:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 16:44 [binutils-gdb] GDBserver: Fix ignored Ctrl-C after reconnection sergiodj+buildbot
2017-11-16 21:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 16:01 [binutils-gdb] Prevent illegal memory accesses when parsing incorrecctly formated core notes sergiodj+buildbot
2017-11-16 20:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 15:04 [binutils-gdb] Add Python rbreak command sergiodj+buildbot
2017-11-16 19:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 15:02 [binutils-gdb] Prevent a possible seg-fault in the section merging code, by always creating a padding buffer sergiodj+buildbot
2017-11-16 17:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 13:23 [binutils-gdb] Fix gdb.base/starti.exp racy test sergiodj+buildbot
2017-11-16 15:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 11:40 [binutils-gdb] Remove non-linux tic6x target descriptions sergiodj+buildbot
2017-11-16 13:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-16 10:28 [binutils-gdb] Fix tic6x-uclinux GDBserver build failure sergiodj+buildbot
2017-11-16 10:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-15 21:02 [binutils-gdb] Include <array> to declare std::array<> sergiodj+buildbot
2017-11-16 2:08 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-15 17:36 [binutils-gdb] Separate the new FP16 instructions backported from Armv8.4-a to Armv8.2-a into a new flag order to distinguish them from the rest of the already existing optional FP16 instructions in Armv8.2-a sergiodj+buildbot
2017-11-15 21:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-15 16:19 [binutils-gdb] Remove no-longer applicable maintainer entries sergiodj+buildbot
2017-11-15 19:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-15 15:43 [binutils-gdb] Move self to Past Maintainers sergiodj+buildbot
2017-11-15 18:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-15 12:22 [binutils-gdb] Handle ' and I format flags sergiodj+buildbot
2017-11-15 15:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-14 22:03 [binutils-gdb] Fix mem region parsing regression and add test sergiodj+buildbot
2017-11-14 22:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-14 10:49 [binutils-gdb] PR22431, powerpc64 ld segfault when .plt discarded sergiodj+buildbot
2017-11-14 12:30 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-14 9:06 [binutils-gdb] x86: add support for AVX-512 VPCMP*{B,W} pseudo-ops sergiodj+buildbot
2017-11-14 9:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-14 5:41 [binutils-gdb] Inconsistent .eh_frame_hdr on powerpc64 sergiodj+buildbot
2017-11-14 5:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-13 12:03 [binutils-gdb] PE: don't corrupt section flags when linking from ELF objects sergiodj+buildbot
2017-11-13 13:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-13 11:44 [binutils-gdb] x86: {f, }xsave64 / {f, }xrstor64 / xsaveopt64 should not allow q suffix sergiodj+buildbot
2017-11-13 11:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-12 10:49 [binutils-gdb] weakdef list handling sergiodj+buildbot
2017-11-12 13:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-12 10:14 [binutils-gdb] non_got_ref after adjust_dynamic_relocs sergiodj+buildbot
2017-11-12 11:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-10 1:39 [binutils-gdb] Fix racy output matching in gdb.tui/tui-completion.exp sergiodj+buildbot
2017-11-10 9:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-10 0:28 [binutils-gdb] Fix racy output matching in gdb.base/memattr.exp sergiodj+buildbot
2017-11-10 5:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-09 23:46 [binutils-gdb] Fix racy output matching in gdb.base/completion.exp sergiodj+buildbot
2017-11-10 4:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-09 20:24 [binutils-gdb] fix typos in ada-lang.c comment sergiodj+buildbot
2017-11-10 1:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-09 20:04 [binutils-gdb] Enable the Dot Product extension by default for Armv8.4-a sergiodj+buildbot
2017-11-10 0:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-09 17:55 [binutils-gdb] Add the operand encoding types for the new Armv8.2-a back-ported instructions. These are to be used later when the new instructions are added sergiodj+buildbot
2017-11-09 21:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-09 17:04 [binutils-gdb] Adds the new Fields and Operand types for the new instructions in Armv8.4-a sergiodj+buildbot
2017-11-09 19:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-09 11:44 [binutils-gdb] Split the ARM Crypto ISA extensions for AES and SHA1+2 into their own options (+aes and +sha2). The reason for the split is because with the introduction of Armv8.4-a the implementation of AES has explicitly been made independent of the implementation of the other crypto extensions sergiodj+buildbot
2017-11-09 12:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-08 1:18 [binutils-gdb] Constify add_setshow_* sergiodj+buildbot
2017-11-08 15:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-08 0:57 [binutils-gdb] Remove cmd_cfunc_ftype sergiodj+buildbot
2017-11-08 14:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 23:28 [binutils-gdb] Constify add_path and friends sergiodj+buildbot
2017-11-08 8:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 22:18 [binutils-gdb] Make set_cmd_cfunc private sergiodj+buildbot
2017-11-08 6:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 21:27 [binutils-gdb] Constify add_abbrev_prefix_cmd sergiodj+buildbot
2017-11-08 4:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 20:49 [binutils-gdb] opcodes/arc: Fix incorrect insn_class for some nps insns sergiodj+buildbot
2017-11-08 2:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 17:23 [binutils-gdb] RISC-V: Add satp as an alias for sptbr sergiodj+buildbot
2017-11-08 1:06 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 14:20 [binutils-gdb] Add some more breakpoint/location range tests sergiodj+buildbot
2017-11-07 23:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 13:35 [binutils-gdb] Make breakpoint/location number parsing error output consistent sergiodj+buildbot
2017-11-07 22:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 12:09 [binutils-gdb] Breakpoint location parsing: always error instead of warning sergiodj+buildbot
2017-11-07 20:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 11:32 [binutils-gdb] Allow enabling/disabling breakpoint location ranges sergiodj+buildbot
2017-11-07 18:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 10:42 [binutils-gdb] This patch similarly to the AArch64 one enables Dot Product support by default for the Cortex-A55 and Cortex-A75 which have hardware support for these instructions sergiodj+buildbot
2017-11-07 17:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 8:51 [binutils-gdb] ngettext support sergiodj+buildbot
2017-11-07 13:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 2:03 [binutils-gdb] Update my e-mail address sergiodj+buildbot
2017-11-07 12:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 1:31 [binutils-gdb] Simplify child_terminal_inferior sergiodj+buildbot
2017-11-07 10:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-07 1:06 [binutils-gdb] Test attaching to a process that isn't a process group leader sergiodj+buildbot
2017-11-07 8:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-06 22:47 [binutils-gdb] Don't set terminal flags twice in a row sergiodj+buildbot
2017-11-07 5:13 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-06 21:12 [binutils-gdb] Target FP: Merge doublest.c and dfp.c into target-float.c sergiodj+buildbot
2017-11-07 1:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-06 17:27 [binutils-gdb] Target FP: Add binop and compare routines to target-float.{c, h} sergiodj+buildbot
2017-11-06 19:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-06 15:56 [binutils-gdb] Target FP: Add string routines to target-float.{c,h} sergiodj+buildbot
2017-11-06 16:47 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-05 12:25 [binutils-gdb] Proper bound check in _bfd_doprnt_scan sergiodj+buildbot
2017-11-05 20:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-05 10:38 [binutils-gdb] PR22397, BFD internal error when message locale isn't C sergiodj+buildbot
2017-11-05 19:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-05 7:46 [binutils-gdb] powerpc TLS in PIEs sergiodj+buildbot
2017-11-05 15:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-05 6:19 [binutils-gdb] hppa-linux TLS relocs sergiodj+buildbot
2017-11-05 12:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-05 2:35 [binutils-gdb] PowerPC readonly_dynrelocs sergiodj+buildbot
2017-11-05 13:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-05 1:19 [binutils-gdb] Use gdb::byte_vector in ppc-linux-tdep.c sergiodj+buildbot
2017-11-05 3:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-04 23:46 [binutils-gdb] Use unique_xmalloc_ptr in c_type_print_base sergiodj+buildbot
2017-11-05 6:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-04 20:14 [binutils-gdb] Replace start_rbreak_breakpoints and end_rbreak_breakpoints sergiodj+buildbot
2017-11-04 23:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-04 19:51 [binutils-gdb] Remove directive-searched cleanups sergiodj+buildbot
2017-11-04 22:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-04 18:59 [binutils-gdb] Use unique_xmalloc_ptr in find_separate_debug_file_by_debuglink sergiodj+buildbot
2017-11-04 21:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-04 17:45 [binutils-gdb] Remove cleanups from link_callbacks_einfo sergiodj+buildbot
2017-11-04 18:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-04 17:00 [binutils-gdb] Replace really_free_pendings with a scoped_ class sergiodj+buildbot
2017-11-04 17:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-03 15:41 [binutils-gdb] Fix regression on ARM after Target FP patches sergiodj+buildbot
2017-11-03 17:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-03 15:03 [binutils-gdb] [ARC] Force the disassam to use the hexadecimal number for printing sergiodj+buildbot
2017-11-03 16:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-03 14:08 [binutils-gdb] [ARC] Sync opcode data base sergiodj+buildbot
2017-11-03 14:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-03 12:17 [binutils-gdb] Fix excessive memory allocation attempts and possible integer overfloaws when attempting to read a COFF binary with a corrupt symbol count sergiodj+buildbot
2017-11-03 12:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-02 20:52 [binutils-gdb] aarch64: Remove AARCH64_FEATURE_F16 from AARCH64_ARCH_V8_2 sergiodj+buildbot
2017-11-03 1:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-02 19:53 [binutils-gdb] Construct readonly regcache without address space sergiodj+buildbot
2017-11-03 0:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-02 19:26 [binutils-gdb] const-fy regcache::m_readonly_p sergiodj+buildbot
2017-11-02 23:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-02 19:07 [binutils-gdb] s/get_regcache_aspace (regcache)/regcache->aspace ()/g sergiodj+buildbot
2017-11-02 20:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-02 18:14 [binutils-gdb] const-fy regcache::m_aspace sergiodj+buildbot
2017-11-02 21:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-02 17:06 [binutils-gdb] Remove regcache_descr::nr_raw_registers sergiodj+buildbot
2017-11-02 19:24 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-02 16:13 [binutils-gdb] New method regcache::assert_regnum sergiodj+buildbot
2017-11-02 18:10 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-02 15:52 [binutils-gdb] Remove code wrapped by "#if 0" sergiodj+buildbot
2017-11-02 16:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-02 15:27 [binutils-gdb] Remove regcache_descr fields sizeof_raw_register_status and sizeof_cooked_register_status sergiodj+buildbot
2017-11-02 15:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-01 15:24 [binutils-gdb] Prevent illegal memory accesses when attempting to read excessively large COFF line number tables sergiodj+buildbot
2017-11-01 15:48 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-11-01 11:58 [binutils-gdb] Fix an invalid free called when attempting to link a COFF object against an ELF archive with --no-keep-memory enabled sergiodj+buildbot
2017-11-01 12:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-31 14:53 [binutils-gdb] Fix illegal memory access triggered when parsing a PE binary with a corrupt data dictionary sergiodj+buildbot
2017-10-31 14:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-30 2:25 [binutils-gdb] frv-elf --gc-sections failures sergiodj+buildbot
2017-10-30 4:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-30 2:05 [binutils-gdb] relocs_compatible test for gc-sections sergiodj+buildbot
2017-10-30 2:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-28 12:08 [binutils-gdb] PR22300, Abort in elf32_hppa_relocate_section building polyml sergiodj+buildbot
2017-10-28 22:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-28 8:07 [binutils-gdb] C++ify xml-syscall.c sergiodj+buildbot
2017-10-28 14:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-28 6:15 [binutils-gdb] Remove usages of find_inferior in handle_status sergiodj+buildbot
2017-10-28 18:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-28 5:13 [binutils-gdb] Get rid of VEC(probe_p) sergiodj+buildbot
2017-10-28 13:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-28 3:31 [binutils-gdb] Get rid of VEC(filename_language) sergiodj+buildbot
2017-10-28 8:48 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-27 17:04 [binutils-gdb] [AArch64] Mark LR clobbered by BL in inline asm sergiodj+buildbot
2017-10-28 4:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-27 3:57 [binutils-gdb] RISC-V: Fix disassembly of c.addi4spn, c.addi16sp, c.lui when imm=0 sergiodj+buildbot
2017-10-27 11:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 22:19 [binutils-gdb] Garbage collect remote.c:remote_async_terminal_ours_p sergiodj+buildbot
2017-10-28 0:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 21:14 [binutils-gdb] const-fy breakpoint_ops->breakpoint_hit parameter aspace sergiodj+buildbot
2017-10-27 21:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 20:23 [binutils-gdb] s/get_regcache_arch (regcache)/regcache->arch ()/g sergiodj+buildbot
2017-10-27 19:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 19:34 [binutils-gdb] Target FP: Use target format throughout expression parsing sergiodj+buildbot
2017-10-27 17:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 16:36 [binutils-gdb] Use const reference for decimal_from_string argument sergiodj+buildbot
2017-10-27 9:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 16:13 [binutils-gdb] Fix unstable test names in gdb.python/py-objfile.exp sergiodj+buildbot
2017-10-26 20:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 14:44 [binutils-gdb] Fix unstable test names in gdb.gdb/unittest.exp sergiodj+buildbot
2017-10-26 19:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 14:06 [binutils-gdb] RISC-V: Only relax to C.LUI when imm != 0 and rd != 0/2 sergiodj+buildbot
2017-10-27 4:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 13:38 [binutils-gdb] Fix gdb.opt/inline-cmds.exp regressions sergiodj+buildbot
2017-10-27 2:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 12:26 [binutils-gdb] Reindent gdb.threads/attach-into-signal.exp sergiodj+buildbot
2017-10-27 0:10 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 11:38 [binutils-gdb] Drop /proc/PID/status polling from gdb.threads/attach-into-signal.exp sergiodj+buildbot
2017-10-26 22:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 9:40 [binutils-gdb] Fix unstable test names in gdb.base/startup-with-shell.exp sergiodj+buildbot
2017-10-26 18:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 8:44 [binutils-gdb] Make sure that undefined symbols added to the linker command line via the -u option appear in the output executable, if they have not been resolved sergiodj+buildbot
2017-10-26 14:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 7:51 [binutils-gdb] Fix the master due to bad regenerated files sergiodj+buildbot
2017-10-26 12:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-26 7:22 [binutils-gdb] Enable Intel VAES instructions sergiodj+buildbot
2017-10-26 9:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-21 17:42 [binutils-gdb] Add overloads of for_each_thread/find_thread that filter on pid sergiodj+buildbot
2017-10-21 20:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-21 15:59 [binutils-gdb] Create a displaced_step_closure class hierarchy sergiodj+buildbot
2017-10-21 16:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-20 19:05 [binutils-gdb] Use std::vector in gdb_bfd_data sergiodj+buildbot
2017-10-20 20:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-20 16:28 [binutils-gdb] Introduce new_bfd_ref sergiodj+buildbot
2017-10-20 18:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-20 15:58 [binutils-gdb] Fix 'gdb.base/quit.exp hangs forever' if the test fails sergiodj+buildbot
2017-10-20 16:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-20 14:57 [binutils-gdb] Fix gdb.gdb/ selftest tests when testing optimized GDB builds sergiodj+buildbot
2017-10-20 14:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-20 2:37 [binutils-gdb] Get rid of VEC(interp_factory_p) sergiodj+buildbot
2017-10-20 2:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-20 0:58 [binutils-gdb] Remove cleanups from break-catch-syscall.c sergiodj+buildbot
2017-10-20 0:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-19 20:39 [binutils-gdb] gdb: Remove hard-coded line number from test sergiodj+buildbot
2017-10-19 20:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-19 18:15 [binutils-gdb] Fix build breakage in gdb/xml-support.c sergiodj+buildbot
2017-10-19 19:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-19 13:54 [binutils-gdb] tilegx: Check bfd_link_executable for TLS check sergiodj+buildbot
2017-10-19 15:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-19 12:45 [binutils-gdb] sparc: Check bfd_link_executable for TLS check sergiodj+buildbot
2017-10-19 12:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-18 14:57 [binutils-gdb] [Visium] Disassemble the operands of the stop instruction sergiodj+buildbot
2017-10-18 14:57 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-18 12:24 [binutils-gdb] Remove features/tic6x-c62x-linux.c sergiodj+buildbot
2017-10-18 12:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-17 20:14 [binutils-gdb] Really make the native-stdio-gdbserver board non-remote sergiodj+buildbot
2017-10-18 0:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-17 17:30 [binutils-gdb] Add several "quit with live inferior" tests sergiodj+buildbot
2017-10-17 23:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-17 16:58 [binutils-gdb] Remove cleanups from disasm.c sergiodj+buildbot
2017-10-17 22:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-17 14:44 [binutils-gdb] Fix double-free corruption sergiodj+buildbot
2017-10-17 18:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-17 13:53 [binutils-gdb] [GDBserver] Move arm-linux.o and arm-get-next-pcs.o to arch/ sergiodj+buildbot
2017-10-17 14:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-17 12:52 [binutils-gdb] [GDBserver] Move arm.o to arch/arm.o sergiodj+buildbot
2017-10-17 12:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-17 11:42 [binutils-gdb] [GDBserver] Replicate src dir in build dir sergiodj+buildbot
2017-10-17 11:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-17 2:05 [binutils-gdb] Record and output access specifiers for nested typedefs sergiodj+buildbot
2017-10-17 6:44 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-17 1:45 [binutils-gdb] Return unique_xmalloc_ptr from target_fileio_read_stralloc sergiodj+buildbot
2017-10-17 5:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-17 1:24 [binutils-gdb] Return unique_xmalloc_ptr from target_read_stralloc sergiodj+buildbot
2017-10-17 4:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-16 22:35 [binutils-gdb] Use std::vector in end_symtab_get_static_block sergiodj+buildbot
2017-10-16 22:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-16 19:33 [binutils-gdb] Use proc_with_prefix in py-breakpoint.exp sergiodj+buildbot
2017-10-16 19:33 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-16 15:34 [binutils-gdb] Get rid of VEC(mem_range_s) sergiodj+buildbot
2017-10-16 17:53 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-16 11:51 [binutils-gdb] ELF: Call check_relocs after opening all inputs sergiodj+buildbot
2017-10-16 15:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-16 10:50 [binutils-gdb] Regenerate gdbserver/configure sergiodj+buildbot
2017-10-16 14:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-16 2:42 [binutils-gdb] Fix GDB build without expat sergiodj+buildbot
2017-10-16 2:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-14 12:31 [binutils-gdb] Replace psymbol_allocation_list with std::vector sergiodj+buildbot
2017-10-14 17:10 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-14 5:29 [binutils-gdb] Don't run gdb.gdb/ selftests if use_gdb_stub is true sergiodj+buildbot
2017-10-14 11:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-14 3:35 [binutils-gdb] ada: Use std::string in print_dynamic_range_bound sergiodj+buildbot
2017-10-14 15:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-14 2:59 [binutils-gdb] Simplify tic6x and s390x expedite registers sergiodj+buildbot
2017-10-14 8:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 16:57 [binutils-gdb] Make gdb.base/find-unmapped.exp pass on remote targets sergiodj+buildbot
2017-10-14 9:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 16:26 [binutils-gdb] Make gdb.base/solib-nodir.exp work with --target_board=native-extended-gdbserver sergiodj+buildbot
2017-10-13 18:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 14:55 [binutils-gdb] Fix gdb.base/term.exp on non-"target native" boards sergiodj+buildbot
2017-10-14 4:44 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 14:31 [binutils-gdb] Remove is_remote kfail from gdb.python/py-evthreads.exp sergiodj+buildbot
2017-10-14 3:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 12:51 [binutils-gdb] kfail gdb.python/py-evsignal.exp on RSP targets properly sergiodj+buildbot
2017-10-14 0:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 11:37 [binutils-gdb] Fix is_remote check in gdb.base/remote.exp sergiodj+buildbot
2017-10-13 21:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 10:49 [binutils-gdb] gdb.base/remote.exp: Fix typo and add missing return sergiodj+buildbot
2017-10-13 19:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 9:47 [binutils-gdb] Eliminate is_remote check in gdb.base/shlib-call.exp sergiodj+buildbot
2017-10-13 16:49 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 5:12 [binutils-gdb] Remove simple_displaced_step_copy_insn sergiodj+buildbot
2017-10-13 15:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 4:53 [binutils-gdb] FT32: support for FT32B processor - part 1 sergiodj+buildbot
2017-10-13 14:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 4:31 [binutils-gdb] Add myself as ft32 maintainer for sim sergiodj+buildbot
2017-10-13 12:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 3:20 [binutils-gdb] Remove references to gdb64 in the testsuite sergiodj+buildbot
2017-10-13 9:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 3:01 [binutils-gdb] Remove is_remote check in labels.exp sergiodj+buildbot
2017-10-13 7:53 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 2:40 [binutils-gdb] Make gdb.base/auvx.exp work with --target_board=native-extended-gdbserver sergiodj+buildbot
2017-10-13 6:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 1:49 [binutils-gdb] Use bool in pv_area sergiodj+buildbot
2017-10-13 5:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 0:40 [binutils-gdb] C++-ify prologue-value's pv_area sergiodj+buildbot
2017-10-13 4:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-13 0:06 [binutils-gdb] Run gdb.base/catch-fork-static.exp on remote target boards sergiodj+buildbot
2017-10-13 0:06 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-12 23:51 [binutils-gdb] linux low: Make the arch code free arch_process_info sergiodj+buildbot
2017-10-13 2:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-12 21:52 [binutils-gdb] lwp_info: Make the arch code free arch_lwp_info sergiodj+buildbot
2017-10-13 1:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-12 19:33 [binutils-gdb] checkpoint.exp: Check for non-"target native" instead of isnative/is_remote sergiodj+buildbot
2017-10-12 22:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-12 19:12 [binutils-gdb] Remove is_remote target check from gdb.base/dprintf-non-stop.exp sergiodj+buildbot
2017-10-12 21:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-12 18:52 [binutils-gdb] Tighten remote check in gdb.base/argv0-symlink.exp sergiodj+buildbot
2017-10-12 20:13 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-12 18:10 [binutils-gdb] Enable gdb.base/inferior-died.exp on is_remote target boards sergiodj+buildbot
2017-10-12 18:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-12 13:05 [binutils-gdb] Force the AArch64 linker backend to refuse to link when it encounters unresoleable relocations sergiodj+buildbot
2017-10-12 13:05 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-12 9:37 [binutils-gdb] x86: Add _bfd_x86_elf_hide_symbol sergiodj+buildbot
2017-10-12 9:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-12 3:43 [binutils-gdb] _bfd_elf_link_hash_hide_symbol calls in generic ELF code sergiodj+buildbot
2017-10-12 7:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-11 23:12 [binutils-gdb] Constify add_prefix_cmd sergiodj+buildbot
2017-10-12 3:13 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-11 22:52 [binutils-gdb] Remove prepare_re_set_context sergiodj+buildbot
2017-10-12 1:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-11 20:03 [binutils-gdb] Add FreeBSD/arm architecture sergiodj+buildbot
2017-10-11 22:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-11 16:50 [binutils-gdb] GDB: Remove Linux core PRPSINFO note writer override sergiodj+buildbot
2017-10-11 20:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-11 16:30 [binutils-gdb] ELF/BFD: Handle both variants of the 64-bit Linux core PRPSINFO note sergiodj+buildbot
2017-10-11 19:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-11 16:09 [binutils-gdb] ELF/BFD, GDB: Handle both variants of the 32-bit Linux core PRPSINFO note sergiodj+buildbot
2017-10-11 18:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-11 13:11 [binutils-gdb] arc: Pass proper CPU value to the disassembler sergiodj+buildbot
2017-10-11 13:25 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-11 12:08 [binutils-gdb] Rename _doprnt -> _bfd_doprnt to fix DJGPP bfd build (and likely others) sergiodj+buildbot
2017-10-11 12:13 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-11 10:21 [binutils-gdb] Remove unnecessary parentheses in declarations sergiodj+buildbot
2017-10-11 10:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-10 23:19 [binutils-gdb] x86: Set GOT refcount to 1 sergiodj+buildbot
2017-10-11 0:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-10 16:39 [binutils-gdb] Eliminate catch_errors sergiodj+buildbot
2017-10-10 17:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-10 16:08 [binutils-gdb] [ARM] PR ld/21402, only override the symbol dynamic decision on undefined weak symbol sergiodj+buildbot
2017-10-10 16:08 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-10 0:23 [binutils-gdb] Remove free_splay_tree cleanup sergiodj+buildbot
2017-10-10 8:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-10 0:15 [binutils-gdb] bfin: Don't create .interp section for info->nointerp sergiodj+buildbot
2017-10-10 4:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 22:40 [binutils-gdb] mn10300: Don't free cached internal symbol table sergiodj+buildbot
2017-10-10 5:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 21:45 [binutils-gdb] Multi-arch exec, more register reading avoidance sergiodj+buildbot
2017-10-10 1:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 19:41 [binutils-gdb] gdb.multi/multi-arch-exec.exp: Also test -m32 => -m64 sergiodj+buildbot
2017-10-10 2:43 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 18:14 [binutils-gdb] Don't try building gdb against guile-2.2 sergiodj+buildbot
2017-10-09 22:53 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 17:56 [binutils-gdb] S/390: Sync with latest POP - 3 new instructions sergiodj+buildbot
2017-10-09 21:41 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 16:13 [binutils-gdb] Fix automatic dependency tracking sergiodj+buildbot
2017-10-09 18:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 15:34 [binutils-gdb] Make cp_remove_params return a gdb::unique_xmalloc_ptr sergiodj+buildbot
2017-10-09 17:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 7:27 [binutils-gdb] Remove some cleanups from dwarf2read.c sergiodj+buildbot
2017-10-09 12:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 5:51 [binutils-gdb] Remove make_cleanup_value_free sergiodj+buildbot
2017-10-09 9:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 5:31 [binutils-gdb] Change search_symbols to return std::vector sergiodj+buildbot
2017-10-09 7:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 5:11 [binutils-gdb] PR22212, memory leak in nm sergiodj+buildbot
2017-10-09 6:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 1:20 [binutils-gdb] sh: Dump dynamic relocation info to the map file sergiodj+buildbot
2017-10-09 3:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-09 0:35 [binutils-gdb] sparc: Remove a strayed comment sergiodj+buildbot
2017-10-09 1:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-08 20:47 [binutils-gdb] Reformat elf_x86_allocate_dynrelocs sergiodj+buildbot
2017-10-08 21:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-08 0:51 [binutils-gdb] sparc: Dump dynamic relocation info to the map file sergiodj+buildbot
2017-10-08 2:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-06 22:49 [binutils-gdb] Skip gdb.mi/mi-threads-interrupt.exp if nointerrupts sergiodj+buildbot
2017-10-07 12:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-06 13:38 [binutils-gdb] Move arm.o arm-get-next-pcs.o arm-linux.o to arch/ sergiodj+buildbot
2017-10-07 7:49 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-06 11:06 [binutils-gdb] Fix more GDB build breakage on mingw32 sergiodj+buildbot
2017-10-07 4:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-06 10:53 [binutils-gdb] Fix GDB build under msys+mingw gcc 32bit sergiodj+buildbot
2017-10-07 2:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-06 10:23 [binutils-gdb] Share code updating gdb_target_obs sergiodj+buildbot
2017-10-07 0:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-06 7:54 [binutils-gdb] x86: Add VERIFY_COPY_RELOC sergiodj+buildbot
2017-10-06 20:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-06 7:44 [binutils-gdb] x86: Add GENERATE_DYNAMIC_RELOCATION_P sergiodj+buildbot
2017-10-06 16:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-06 7:42 [binutils-gdb] x86: Add POINTER_LOCAL_IFUNC_P/PLT_LOCAL_IFUNC_P sergiodj+buildbot
2017-10-06 15:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-06 7:30 [binutils-gdb] Add RESOLVED_LOCALLY_P sergiodj+buildbot
2017-10-06 12:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-06 7:26 [binutils-gdb] x86: Add NEED_DYNAMIC_RELOCATION_P sergiodj+buildbot
2017-10-06 10:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-06 1:11 [binutils-gdb] powerpc: Dump dynamic relocation info to the map file sergiodj+buildbot
2017-10-06 4:08 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-05 17:18 [binutils-gdb] Remove unused "union agent_val" from ax.h sergiodj+buildbot
2017-10-06 1:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-05 17:18 [binutils-gdb] Clean up includes of doublest.h and floatformat.h sergiodj+buildbot
2017-10-05 22:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-05 17:18 [binutils-gdb] Clean up some DFP interfaces sergiodj+buildbot
2017-10-05 23:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-05 17:00 [binutils-gdb] Handle the NT_ARM_VFP core dump note on FreeBSD sergiodj+buildbot
2017-10-05 20:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-05 17:00 [binutils-gdb] Handle FreeBSD-specific AT_EHDRFLAGS and AT_HWCAP auxiliary vector types sergiodj+buildbot
2017-10-05 18:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-05 13:02 [binutils-gdb] tile: Dump dynamic relocation info to the map file sergiodj+buildbot
2017-10-05 14:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-05 4:45 [binutils-gdb] Update my email address sergiodj+buildbot
2017-10-05 5:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-05 1:42 [binutils-gdb] bfd_set_input_error sergiodj+buildbot
2017-10-05 3:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-05 1:09 [binutils-gdb] bfd_error_on_input is for archives sergiodj+buildbot
2017-10-05 2:24 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-04 23:08 [binutils-gdb] PR21167, relocation sections not included in groups sergiodj+buildbot
2017-10-05 0:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-04 17:39 [binutils-gdb] Fix "Remote 'g' packet reply is too long" problems with multiple inferiors sergiodj+buildbot
2017-10-04 21:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-04 17:39 [binutils-gdb] Redesign mock environment for gdbarch selftests sergiodj+buildbot
2017-10-04 19:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-04 16:48 [binutils-gdb] Fix -list-thread-groups --available logic and add test sergiodj+buildbot
2017-10-04 17:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-04 12:21 [binutils-gdb] Move code out of 'between TRY and CATCH' sergiodj+buildbot
2017-10-04 13:24 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-04 10:25 [binutils-gdb] Add missing-END_CATCH detection/protection (to gdb's TRY/CATCH/END_CATCH) sergiodj+buildbot
2017-10-04 12:13 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-04 7:08 [binutils-gdb] Extend "set cwd" to work on gdbserver sergiodj+buildbot
2017-10-04 10:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-04 4:18 [binutils-gdb] PR22245, Fix potential UB in bfd_set_error sergiodj+buildbot
2017-10-04 5:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-03 23:08 [binutils-gdb] gdbarch: Remove duplicate `struct objfile' declaration sergiodj+buildbot
2017-10-04 0:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-03 21:48 [binutils-gdb] Update my email address sergiodj+buildbot
2017-10-03 22:54 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-02 21:46 [binutils-gdb] Fix &str printing in Rust sergiodj+buildbot
2017-10-03 14:52 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-02 21:04 [binutils-gdb] Fix ptype of Rust slices sergiodj+buildbot
2017-10-03 13:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-10-02 20:33 [binutils-gdb] Allow indexing of &str in Rust sergiodj+buildbot
2017-10-03 12:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
[not found] <9754d8c4c48209eaefb044d03dc25f14dca8a263@gdb-build>
2017-10-02 12:04 ` sergiodj+buildbot
2017-10-02 9:57 [binutils-gdb] Fix GDB build with G++ 4.8 sergiodj+buildbot
2017-10-03 9:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
[not found] <8abcee91738bf0be98e949049c559839ef811ae4@gdb-build>
2017-10-02 5:21 ` sergiodj+buildbot
2017-10-01 2:06 [binutils-gdb] Use std::set in mi-main.c sergiodj+buildbot
2017-10-03 0:06 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-30 14:16 [binutils-gdb] Don't copy a string in mi_cmd_disassemble sergiodj+buildbot
2017-10-02 18:03 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-30 11:26 [binutils-gdb] Remove cleanups from mi_cmd_break_insert_1 sergiodj+buildbot
2017-10-02 15:26 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-30 10:20 [binutils-gdb] Remove make_cleanup_defer_target_commit_resume sergiodj+buildbot
2017-10-02 13:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-30 8:37 [binutils-gdb] Remove cleanup from mt-tdep.c sergiodj+buildbot
2017-10-02 8:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-30 7:10 [binutils-gdb] Remove some cleanups from stack.c sergiodj+buildbot
2017-10-02 2:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-30 6:22 [binutils-gdb] Remove cleanup from tilegx-tdep.c sergiodj+buildbot
2017-10-02 1:45 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-28 2:14 [binutils-gdb] Constify core_file_command sergiodj+buildbot
2017-09-28 9:27 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-28 1:36 [binutils-gdb] Constify commands in cli-dump.c sergiodj+buildbot
2017-09-28 18:46 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-28 1:33 [binutils-gdb] Constify some commands in cli-cmds.c sergiodj+buildbot
2017-09-28 17:10 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-28 0:29 [binutils-gdb] Constify cmd_record_full_restore sergiodj+buildbot
2017-09-28 13:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-27 23:15 [binutils-gdb] Constify show_convenience sergiodj+buildbot
2017-09-28 10:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-27 22:06 [binutils-gdb] Constify display_tib sergiodj+buildbot
2017-09-28 3:01 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-27 21:51 [binutils-gdb] Constify maintenance_print_user_registers sergiodj+buildbot
2017-09-28 8:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-27 20:54 [binutils-gdb] Constify maintenance_cplus_namespace sergiodj+buildbot
2017-09-28 6:58 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-27 19:37 [binutils-gdb] Constify two functions in valprint.c sergiodj+buildbot
2017-09-27 21:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-27 18:28 [binutils-gdb] Constify dump_arc_instruction_command sergiodj+buildbot
2017-09-27 23:09 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-27 16:46 [binutils-gdb] Constify add_cmd gdb_bfd.c sergiodj+buildbot
2017-09-27 17:22 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-27 15:48 [binutils-gdb] Add add_cmd function overloads sergiodj+buildbot
2017-09-27 16:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-26 22:02 [binutils-gdb] x86-64: Don't pass output_bfd to info->callbacks->minfo sergiodj+buildbot
2017-09-27 6:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-26 18:56 [binutils-gdb] dwarf2read: Restrict ICC workaround to ICC<14 sergiodj+buildbot
2017-09-27 4:15 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-26 17:59 [binutils-gdb] Use "switch_to_thread" more thoroughly on gdbserver sergiodj+buildbot
2017-09-26 23:44 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-26 17:12 [binutils-gdb] Allow linking GDB with ncursesw sergiodj+buildbot
2017-09-26 22:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-26 16:23 [binutils-gdb] Fix an assertion failure when parsing a fuzzed x86_64 ELF binary sergiodj+buildbot
2017-09-26 22:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-26 16:00 [binutils-gdb] Tidy reading data in read_formatted_entries sergiodj+buildbot
2017-09-26 19:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-26 15:21 [binutils-gdb] Avoid needless resource usage when processing a corrupt DWARF directory or file name table sergiodj+buildbot
2017-09-26 18:24 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-26 14:35 [binutils-gdb] Remove support for Solaris < 10 (PR gdb/22185) sergiodj+buildbot
2017-09-26 16:20 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-26 13:13 [binutils-gdb] PR22209, invalid memory read in find_abstract_instance_name sergiodj+buildbot
2017-09-26 13:36 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-26 2:45 [binutils-gdb] Remove make_cleanup_regcache_xfree sergiodj+buildbot
2017-09-26 4:32 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-26 0:40 [binutils-gdb] PR22204, Lack of DW_LNE_end_sequence causes "infinite" loop sergiodj+buildbot
2017-09-26 0:55 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-25 17:51 [binutils-gdb] S390: Document guarded-storage register support sergiodj+buildbot
2017-09-26 0:37 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-25 17:02 [binutils-gdb] S390: Add guarded-storage register support to gdbserver sergiodj+buildbot
2017-09-25 22:48 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-25 16:24 [binutils-gdb] S390: Add guarded-storage register support to GDB sergiodj+buildbot
2017-09-25 21:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-25 15:04 [binutils-gdb] PR22202, buffer overflow in parse_die sergiodj+buildbot
2017-09-25 16:59 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-25 14:14 [binutils-gdb] PR22201, DW_AT_name with out of bounds reference sergiodj+buildbot
2017-09-25 15:19 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-25 13:52 [binutils-gdb] PR22200, DWARF5 .debug_line sanity check sergiodj+buildbot
2017-09-25 14:08 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-25 6:17 [binutils-gdb] Initialize 'imm' on opcodes/aarch64-opc.c:expand_fp_imm (and fix breakage on mingw) sergiodj+buildbot
2017-09-25 6:34 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-24 12:59 [binutils-gdb] PR22197, buffer overflow in bfd_get_debug_link_info_1 sergiodj+buildbot
2017-09-24 19:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-24 12:42 [binutils-gdb] PR22191, memory leak in dwarf2.c sergiodj+buildbot
2017-09-24 17:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-24 8:28 [binutils-gdb] PR22186, divide-by-zero in decode_line_info sergiodj+buildbot
2017-09-24 11:39 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-24 8:08 [binutils-gdb] PR22169, heap-based buffer overflow in read_1_byte sergiodj+buildbot
2017-09-24 10:00 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-24 7:15 [binutils-gdb] PR22166, SHT_GNU_verneed memory allocation sergiodj+buildbot
2017-09-24 7:31 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-23 21:05 [binutils-gdb] Removed unused declaration sergiodj+buildbot
2017-09-23 21:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-22 22:17 [binutils-gdb] Change type of scoped_input_handler::m_quit_handler sergiodj+buildbot
2017-09-23 2:06 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-22 21:41 [binutils-gdb] x86: Guard against corrupted PLT sergiodj+buildbot
2017-09-22 23:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-22 18:25 [binutils-gdb] Get rid of "gdb_dirbuf" and use "getcwd (NULL, 0)" sergiodj+buildbot
2017-09-22 20:51 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-22 15:58 [binutils-gdb] gdbserver x86 on win32: call init_target_desc sergiodj+buildbot
2017-09-22 18:12 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-22 15:29 [binutils-gdb] x86: Return -1 if bfd_canonicalize_dynamic_reloc returns 0 sergiodj+buildbot
2017-09-22 17:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-22 14:18 [binutils-gdb] Fix sometimes-uninitialized warning in gdbscm_value_address sergiodj+buildbot
2017-09-22 14:38 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-21 20:48 [binutils-gdb] Test case for Inferior.thread_from_thread_handle sergiodj+buildbot
2017-09-22 4:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-21 20:24 [binutils-gdb] Add thread_handle_to_thread_info support for remote targets sergiodj+buildbot
2017-09-22 0:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-21 20:08 [binutils-gdb] Add thread_db_notice_clone to gdbserver sergiodj+buildbot
2017-09-21 22:06 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-21 19:14 [binutils-gdb] Add target method for converting thread handle to thread_info struct pointer sergiodj+buildbot
2017-09-21 19:35 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-21 16:21 [binutils-gdb] S/390: Fix Elf note swap s390_gs_bc vs. s390_gs_cb sergiodj+buildbot
2017-09-21 16:40 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-21 13:51 [binutils-gdb] linux-waitpid: Get rid of format string warning sergiodj+buildbot
2017-09-21 16:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-21 12:52 [binutils-gdb] microblaze-tdep: Add ATTRIBUTE_PRINTF to microblaze_debug sergiodj+buildbot
2017-09-21 13:11 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-21 8:31 [binutils-gdb] [SIM, ARM] Fix build failure sergiodj+buildbot
2017-09-21 9:10 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-21 5:09 [binutils-gdb] Allocate bpstats with new sergiodj+buildbot
2017-09-21 5:17 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-21 0:06 [binutils-gdb] eval.c:evaluate_subexp_standard: Use RAII to avoid leaks sergiodj+buildbot
2017-09-21 4:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-20 22:31 [binutils-gdb] Overload catch_command_errors sergiodj+buildbot
2017-09-20 22:56 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-20 14:10 [binutils-gdb] gdb - avx512: tests were failing due to missing memory aligment sergiodj+buildbot
2017-09-20 14:21 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-19 19:46 [binutils-gdb] Add a 'starti' command sergiodj+buildbot
2017-09-19 20:18 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-19 5:56 [binutils-gdb] PR22150, ld keeps a version reference for gc'd symbols sergiodj+buildbot
2017-09-19 6:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-16 14:50 [binutils-gdb] Make xml_escape_text return an std::string sergiodj+buildbot
2017-09-16 17:49 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-16 14:26 [binutils-gdb] Refactor handle_qxfer_libraries and friends to use std::string sergiodj+buildbot
2017-09-17 4:23 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-16 13:24 [binutils-gdb] Add unit test for xml_escape_text sergiodj+buildbot
2017-09-16 16:14 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-16 13:01 [binutils-gdb] Add selftests run filtering sergiodj+buildbot
2017-09-16 14:50 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-16 12:13 [binutils-gdb] mi_load_progress: Use unique_ptr to manage ui_out lifetime sergiodj+buildbot
2017-09-16 12:29 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-15 19:36 [binutils-gdb] Sync libiberty/ & include/ with GCC sergiodj+buildbot
2017-09-16 2:42 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-15 18:45 [binutils-gdb] gdbserver: Remove thread_to_gdb_id sergiodj+buildbot
2017-09-15 23:28 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-15 17:56 [binutils-gdb] gdbserver: Remove gdb_id_to_thread_id sergiodj+buildbot
2017-09-15 21:30 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-15 17:29 [binutils-gdb] Deduplicate require_running macros and move them up sergiodj+buildbot
2017-09-15 19:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-15 16:54 [binutils-gdb] gdbserver: Move detach code to its own function sergiodj+buildbot
2017-09-15 20:16 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-15 16:41 [binutils-gdb] Add -l option to src-release script sergiodj+buildbot
2017-09-15 18:04 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-15 13:29 [binutils-gdb] gdbserver: Remove duplicate functions to find any thread of process sergiodj+buildbot
2017-09-15 15:02 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
2017-09-15 12:40 [binutils-gdb] Fix x86 build failures sergiodj+buildbot
2017-09-15 13:07 ` Failures on Ubuntu-AArch32-m32, branch master sergiodj+buildbot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).