public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Fedora-x86_64-m64, branch master
2017-11-06 16:44 [binutils-gdb] Target FP: Add conversion routines to target-float.{c, h} sergiodj+buildbot
@ 2017-11-06 16:44 ` sergiodj+buildbot
2017-11-06 17:00 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 16:44 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/7907>
Commit(s) tested:
50637b26f85dc3e59b616f1b01ca8885cf98f0b4
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Add conversion routines to target-float.{c,h}
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-m64/50/50637b26f85dc3e59b616f1b01ca8885cf98f0b4/>
*** 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-x86_64-m64/xfails/master/xfail;hb=5845f04>
You can also see a pretty-printed version 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=5845f04>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [binutils-gdb] Target FP: Add conversion routines to target-float.{c, h}
@ 2017-11-06 16:44 sergiodj+buildbot
2017-11-06 16:44 ` Failures on Fedora-x86_64-m64, branch master sergiodj+buildbot
` (9 more replies)
0 siblings, 10 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 16:44 UTC (permalink / raw)
To: gdb-testers
*** TEST RESULTS FOR COMMIT 50637b26f85dc3e59b616f1b01ca8885cf98f0b4 ***
Author: Ulrich Weigand <ulrich.weigand@de.ibm.com>
Branch: master
Commit: 50637b26f85dc3e59b616f1b01ca8885cf98f0b4
Target FP: Add conversion routines to target-float.{c,h}
This patch adds the following conversion routines:
- target_float_to_longest
- target_float_from_longest
- target_float_from_ulongest
- target_float_convert
which call the equivalent decimal_ routines to handle decimal FP,
and call helper routines that currently still go via DOUBLEST to
handle binary FP.
The target_float_convert routine not only handles BFP<->BFP and
DFP<->DFP conversions, but also BFP<->DFP, which are implemented
by converting to a string and back.
These helpers are used in particular to implement conversion
from and to FP in value_cast, without going through DOUBLEST there.
In order to implement this for the FP<-integer case, the
pack_long / pack_unsigned_long routines are extended to support
floating-point values as output (thereby allowing use of
value_from_[u]longest with a floating-point target type).
This latter change also allows simplification of value_one.
gdb/ChangeLog:
2017-11-06 Ulrich Weigand <uweigand@de.ibm.com>
* target-float.c (floatformat_to_longest): New function.
(floatformat_from_longest, floatformat_from_ulongest): Likewise.
(floatformat_convert): Likewise.
(target_float_to_longest): Likewise.
(target_float_from_longest, target_float_from_ulongest): Likewise.
(target_float_convert): Likewise.
* target-float.h (target_float_to_longest): Add prototype.
(target_float_from_longest, target_float_from_ulongest): Likewise.
(target_float_convert): Likewise.
* value.c (unpack_long): Use target_float_to_longest.
(pack_long): Allow FP types. Use target_float_from_longest.
(pack_unsigned_long): Likewise using target_float_from_ulongest.
* valops.c: Include "target-float.h". Do not include "dfp.h".
(value_cast): Handle conversions to FP using target_float_convert,
value_from_ulongest, and value_from_longest.
(value_one): Use value_from_longest for FP types as well.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
2017-11-06 16:44 [binutils-gdb] Target FP: Add conversion routines to target-float.{c, h} sergiodj+buildbot
2017-11-06 16:44 ` Failures on Fedora-x86_64-m64, branch master sergiodj+buildbot
@ 2017-11-06 17:00 ` sergiodj+buildbot
2017-11-06 17:09 ` Failures on Fedora-i686, " sergiodj+buildbot
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 17:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-3
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-extended-gdbserver-m64/builds/7894>
Commit(s) tested:
50637b26f85dc3e59b616f1b01ca8885cf98f0b4
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Add conversion routines to target-float.{c,h}
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/50/50637b26f85dc3e59b616f1b01ca8885cf98f0b4/>
*** 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=5fa189d>
You can also see a pretty-printed version 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=5fa189d>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-i686, branch master
2017-11-06 16:44 [binutils-gdb] Target FP: Add conversion routines to target-float.{c, h} sergiodj+buildbot
2017-11-06 16:44 ` Failures on Fedora-x86_64-m64, branch master sergiodj+buildbot
2017-11-06 17:00 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2017-11-06 17:09 ` sergiodj+buildbot
2017-11-06 17:16 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 17:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-2
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-i686/builds/7888>
Commit(s) tested:
50637b26f85dc3e59b616f1b01ca8885cf98f0b4
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Add conversion routines to target-float.{c,h}
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-i686/50/50637b26f85dc3e59b616f1b01ca8885cf98f0b4/>
*** Diff to previous build ***
============================
new FAIL: gdb.gdb/complaints.exp: breakpoint in captured_command_loop
new FAIL: gdb.gdb/complaints.exp: run until breakpoint at captured_command_loop
new FAIL: gdb.gdb/observer.exp: breakpoint in captured_main
new FAIL: gdb.gdb/observer.exp: run until breakpoint at captured_main
new FAIL: gdb.gdb/python-interrupts.exp: breakpoint in captured_command_loop
new FAIL: gdb.gdb/python-interrupts.exp: run until breakpoint at captured_command_loop
new FAIL: gdb.gdb/python-selftest.exp: breakpoint in captured_command_loop
new FAIL: gdb.gdb/python-selftest.exp: run until breakpoint at captured_command_loop
new FAIL: gdb.gdb/selftest.exp: breakpoint in captured_main
new FAIL: gdb.gdb/selftest.exp: run until breakpoint at captured_main
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/Fedora-i686/xfails/master/xfail;hb=aa1a01b>
You can also see a pretty-printed version 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=aa1a01b>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-m32, branch master
2017-11-06 16:44 [binutils-gdb] Target FP: Add conversion routines to target-float.{c, h} sergiodj+buildbot
` (2 preceding siblings ...)
2017-11-06 17:09 ` Failures on Fedora-i686, " sergiodj+buildbot
@ 2017-11-06 17:16 ` sergiodj+buildbot
2017-11-06 17:21 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 17:16 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-3
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-m32/builds/7867>
Commit(s) tested:
50637b26f85dc3e59b616f1b01ca8885cf98f0b4
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Add conversion routines to target-float.{c,h}
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-m32/50/50637b26f85dc3e59b616f1b01ca8885cf98f0b4/>
*** 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/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] 11+ messages in thread
* Failures on Fedora-x86_64-cc-with-index, branch master
2017-11-06 16:44 [binutils-gdb] Target FP: Add conversion routines to target-float.{c, h} sergiodj+buildbot
` (3 preceding siblings ...)
2017-11-06 17:16 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
@ 2017-11-06 17:21 ` sergiodj+buildbot
2017-11-06 17:24 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 17:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-4
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-cc-with-index/builds/7819>
Commit(s) tested:
50637b26f85dc3e59b616f1b01ca8885cf98f0b4
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Add conversion routines to target-float.{c,h}
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-cc-with-index/50/50637b26f85dc3e59b616f1b01ca8885cf98f0b4/>
*** 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/Fedora-x86_64-cc-with-index/xfails/master/xfail;hb=50f8da9>
You can also see a pretty-printed version 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-cc-with-index/xfails/master/xfail.table;hb=50f8da9>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-s390x-m64, branch master
2017-11-06 16:44 [binutils-gdb] Target FP: Add conversion routines to target-float.{c, h} sergiodj+buildbot
` (4 preceding siblings ...)
2017-11-06 17:21 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
@ 2017-11-06 17:24 ` sergiodj+buildbot
2017-11-06 17:42 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 17:24 UTC (permalink / raw)
To: gdb-testers
Buildslave:
marist-fedora-s390x
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-s390x-m64/builds/6886>
Commit(s) tested:
50637b26f85dc3e59b616f1b01ca8885cf98f0b4
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Add conversion routines to target-float.{c,h}
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-s390x-m64/50/50637b26f85dc3e59b616f1b01ca8885cf98f0b4/>
*** 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/Fedora-s390x-m64/xfails/master/xfail;hb=4779c05>
You can also see a pretty-printed version 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-s390x-m64/xfails/master/xfail.table;hb=4779c05>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Ubuntu-AArch64-native-gdbserver-m64, branch master
2017-11-06 16:44 [binutils-gdb] Target FP: Add conversion routines to target-float.{c, h} sergiodj+buildbot
` (5 preceding siblings ...)
2017-11-06 17:24 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
@ 2017-11-06 17:42 ` sergiodj+buildbot
2017-11-06 18:11 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 17:42 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-aarch64-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch64-native-gdbserver-m64/builds/3387>
Commit(s) tested:
50637b26f85dc3e59b616f1b01ca8885cf98f0b4
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Add conversion routines to target-float.{c,h}
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch64-native-gdbserver-m64/50/50637b26f85dc3e59b616f1b01ca8885cf98f0b4/>
*** 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-AArch64-native-gdbserver-m64/xfails/master/xfail;hb=b32a24c>
You can also see a pretty-printed version of 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-native-gdbserver-m64/xfails/master/xfail.table;hb=b32a24c>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Ubuntu-AArch64-m64, branch master
2017-11-06 16:44 [binutils-gdb] Target FP: Add conversion routines to target-float.{c, h} sergiodj+buildbot
` (6 preceding siblings ...)
2017-11-06 17:42 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
@ 2017-11-06 18:11 ` sergiodj+buildbot
2017-11-06 18:27 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
2017-11-06 18:52 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 18:11 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-aarch64-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch64-m64/builds/3399>
Commit(s) tested:
50637b26f85dc3e59b616f1b01ca8885cf98f0b4
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Add conversion routines to target-float.{c,h}
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch64-m64/50/50637b26f85dc3e59b616f1b01ca8885cf98f0b4/>
*** 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-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] 11+ messages in thread
* Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, branch master
2017-11-06 16:44 [binutils-gdb] Target FP: Add conversion routines to target-float.{c, h} sergiodj+buildbot
` (7 preceding siblings ...)
2017-11-06 18:11 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
@ 2017-11-06 18:27 ` sergiodj+buildbot
2017-11-06 18:52 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 18:27 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/1993>
Commit(s) tested:
50637b26f85dc3e59b616f1b01ca8885cf98f0b4
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Add conversion routines to target-float.{c,h}
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-native-extended-gdbserver-m32/50/50637b26f85dc3e59b616f1b01ca8885cf98f0b4/>
*** Diff to previous build ***
============================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=5: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=12: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=15: wait for stops
============================
*** 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] 11+ messages in thread
* Failures on Ubuntu-AArch32-native-gdbserver-m32, branch master
2017-11-06 16:44 [binutils-gdb] Target FP: Add conversion routines to target-float.{c, h} sergiodj+buildbot
` (8 preceding siblings ...)
2017-11-06 18:27 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2017-11-06 18:52 ` sergiodj+buildbot
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 18:52 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/1976>
Commit(s) tested:
50637b26f85dc3e59b616f1b01ca8885cf98f0b4
Author(s) (in the same order as the commits):
Ulrich Weigand <ulrich.weigand@de.ibm.com>
Subject:
Target FP: Add conversion routines to target-float.{c,h}
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-native-gdbserver-m32/50/50637b26f85dc3e59b616f1b01ca8885cf98f0b4/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.reverse/insn-reverse.exp: ext_reg_load: compare registers on insn 3:vldr s3, [r3]
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-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] 11+ messages in thread
end of thread, other threads:[~2017-11-06 18:52 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-06 16:44 [binutils-gdb] Target FP: Add conversion routines to target-float.{c, h} sergiodj+buildbot
2017-11-06 16:44 ` Failures on Fedora-x86_64-m64, branch master sergiodj+buildbot
2017-11-06 17:00 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2017-11-06 17:09 ` Failures on Fedora-i686, " sergiodj+buildbot
2017-11-06 17:16 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
2017-11-06 17:21 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
2017-11-06 17:24 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
2017-11-06 17:42 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
2017-11-06 18:11 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
2017-11-06 18:27 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
2017-11-06 18:52 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " 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).