public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Add new command to create extra console/mi UIs
@ 2016-06-21 18:51 sergiodj+buildbot
2016-06-21 18:50 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master sergiodj+buildbot
` (9 more replies)
0 siblings, 10 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2016-06-21 18:51 UTC (permalink / raw)
To: gdb-testers
*** TEST RESULTS FOR COMMIT 60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0 ***
Author: Pedro Alves <palves@redhat.com>
Branch: master
Commit: 60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0
Add new command to create extra console/mi UIs
With all the previous plumbing in place, it's now easy to add a
command that actually creates a new console/mi UI.
The intended use case is to make it possible and easy for MI frontends
to provide a fully featured GDB console to users, with readline
support, command line editing, history, etc., just like if gdb was
started on the command line. Currently MI frontends have to try to
implement all of that theirselves and make use of "-interpreter-exec
console ...", which is far from perfect. If you ever tried Eclipse's
gdb console window, you'll know what I mean...
Instead of trying to multiplex console through MI, this command let's
just leverage all the built in readline/editing support already inside
gdb.
The plan is for the MI frontend to start GDB in regular console mode,
running inside a terminal emulator widget embedded in Eclipse (which
already exists, for supporting the shell widget; other frontends have
similar widgets), and then tell GDB to run a full MI interpreter on an
specified input/output device, independent of the console.
My original prototype planned to do things the other way around --
start GDB in MI mode, and then start an extra CLI console on separate
tty. I handed over that prototype to Marc Khouzam @ Eclipse CDT, and
after experimentation and discussion, we ended up concluding that
starting GDB in CLI mode instead was both easier and actually also
supported an interesting use case -- connect an Eclipse frontend to a
GDB that is already running outside Eclipse.
The current usage is "new-ui <interpreter> <tty>".
E.g., on a terminal run this scriplet:
$ cat gdb-client
#!/bin/bash
reset
tty
tail -f /dev/null
$ gdb-client
/dev/pts/15
Now run gdb on another terminal, and tell it to start a MI interpreter
on the tty of the other terminal:
...
(gdb) new-ui mi /dev/pts/15
New UI allocated
Now back to the the gdb-client terminal, we'll get an MI prompt, ready
for MI input:
/dev/pts/15
=thread-group-added,id="i1"
(gdb)
You can also start a new UI running a CLI, with:
(gdb) new-ui console /dev/pts/15
Though note that this console won't support readline command editing.
It works as if "set editing off" was entered.
gdb/ChangeLog:
2016-06-21 Pedro Alves <palves@redhat.com>
* interps.c (set_top_level_interpreter): New function, factored
out from captured_main.
(interpreter_completer): Make extern.
* interps.h (set_top_level_interpreter, interpreter_completer):
New declarations.
(captured_main): Use set_top_level_interpreter.
* top.c [!O_NOCTTY] (O_NOCTTY): Define as 0.
(open_terminal_stream, new_ui_command): New functions.
(init_main): Install the "new-ui" command.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
2016-06-21 18:51 [binutils-gdb] Add new command to create extra console/mi UIs sergiodj+buildbot
@ 2016-06-21 18:50 ` sergiodj+buildbot
2016-06-22 9:22 ` Failures on Debian-i686, " sergiodj+buildbot
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2016-06-21 18:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-3
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-extended-gdbserver-m64/builds/3827>
Commit(s) tested:
60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add new command to create extra console/mi UIs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/cgit/Fedora-x86_64-native-extended-gdbserver-m64/.git/tree/?h=master&id=7beccde0b9d6dd95401f667c5eae3cde9587a5fc>
*** Diff to previous build ***
============================
new FAIL: gdb.python/py-symtab.exp: Can't run to main
PASS -> FAIL: gdb.threads/attach-stopped.exp: nonthreaded: attach2 to stopped bt
============================
*** Complete list of XFAILs for this builder ***
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=abeb663>
You can also see a pretty-printed version 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=abeb663>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Debian-i686, branch master
2016-06-21 18:51 [binutils-gdb] Add new command to create extra console/mi UIs sergiodj+buildbot
2016-06-21 18:50 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master sergiodj+buildbot
@ 2016-06-22 9:22 ` sergiodj+buildbot
2016-06-22 11:00 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2016-06-22 9:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
wildebeest-debian-wheezy-i686
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Debian-i686/builds/3708>
Commit(s) tested:
60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add new command to create extra console/mi UIs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/cgit/Debian-i686/.git/tree/?h=master&id=9c42125c5b49d35d746cf9c3cd0a185667eae462>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: step
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-i686/xfails/master/xfail;hb=b49a91b>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-i686/xfails/master/xfail.table;hb=b49a91b>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Debian-i686-native-extended-gdbserver, branch master
2016-06-21 18:51 [binutils-gdb] Add new command to create extra console/mi UIs sergiodj+buildbot
2016-06-21 18:50 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master sergiodj+buildbot
2016-06-22 9:22 ` Failures on Debian-i686, " sergiodj+buildbot
@ 2016-06-22 11:00 ` sergiodj+buildbot
2016-06-22 22:59 ` Failures on Debian-x86_64-m64, " sergiodj+buildbot
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2016-06-22 11:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
wildebeest-debian-wheezy-i686
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Debian-i686-native-extended-gdbserver/builds/3689>
Commit(s) tested:
60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add new command to create extra console/mi UIs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/cgit/Debian-i686-native-extended-gdbserver/.git/tree/?h=master&id=2e12fd3ab08e5328f289d157eb7a181f1b58bdb2>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugINpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugINpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugINpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugINpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugINpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugINpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugINpieATTACH: attach-relinkYES: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugINpieATTACH: attach-relinkYES: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugINpieATTACH: attach-relinkNO: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugINpieATTACH: attach-relinkNO: attach main bt
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: unbreak loop in thread 2
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-i686-native-extended-gdbserver/xfails/master/xfail;hb=b49a91b>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-i686-native-extended-gdbserver/xfails/master/xfail.table;hb=b49a91b>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Debian-x86_64-m64, branch master
2016-06-21 18:51 [binutils-gdb] Add new command to create extra console/mi UIs sergiodj+buildbot
` (2 preceding siblings ...)
2016-06-22 11:00 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
@ 2016-06-22 22:59 ` sergiodj+buildbot
2016-06-22 23:28 ` Failures on Debian-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2016-06-22 22:59 UTC (permalink / raw)
To: gdb-testers
Buildslave:
wildebeest-debian-wheezy-x86_64
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Debian-x86_64-m64/builds/3626>
Commit(s) tested:
60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add new command to create extra console/mi UIs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/cgit/Debian-x86_64-m64/.git/tree/?h=master&id=199d332250b870048114bee6ec9ed4e8a747be6f>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-x86_64-m64/xfails/master/xfail;hb=b49a91b>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-x86_64-m64/xfails/master/xfail.table;hb=b49a91b>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Debian-x86_64-native-extended-gdbserver-m64, branch master
2016-06-21 18:51 [binutils-gdb] Add new command to create extra console/mi UIs sergiodj+buildbot
` (3 preceding siblings ...)
2016-06-22 22:59 ` Failures on Debian-x86_64-m64, " sergiodj+buildbot
@ 2016-06-22 23:28 ` sergiodj+buildbot
2016-06-23 12:44 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2016-06-22 23:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
wildebeest-debian-wheezy-x86_64
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Debian-x86_64-native-extended-gdbserver-m64/builds/3738>
Commit(s) tested:
60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add new command to create extra console/mi UIs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/cgit/Debian-x86_64-native-extended-gdbserver-m64/.git/tree/?h=master&id=ef342c928fbf7141e8803593259137a64f9e3274>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: inferior 1 exited
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-x86_64-native-extended-gdbserver-m64/xfails/master/xfail;hb=b49a91b>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-x86_64-native-extended-gdbserver-m64/xfails/master/xfail.table;hb=b49a91b>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-ppc64be-cc-with-index, branch master
2016-06-21 18:51 [binutils-gdb] Add new command to create extra console/mi UIs sergiodj+buildbot
` (4 preceding siblings ...)
2016-06-22 23:28 ` Failures on Debian-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-06-23 12:44 ` sergiodj+buildbot
2016-06-23 13:39 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2016-06-23 12:44 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-ppc64be-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-ppc64be-cc-with-index/builds/3747>
Commit(s) tested:
60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add new command to create extra console/mi UIs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=master&id=956affcf38d471c84b88975128ce71442a75da55>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first 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/Fedora-ppc64be-cc-with-index/xfails/master/xfail;hb=2531a38>
You can also see a pretty-printed version 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-ppc64be-cc-with-index/xfails/master/xfail.table;hb=2531a38>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-ppc64be-native-gdbserver-m64, branch master
2016-06-21 18:51 [binutils-gdb] Add new command to create extra console/mi UIs sergiodj+buildbot
` (5 preceding siblings ...)
2016-06-23 12:44 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
@ 2016-06-23 13:39 ` sergiodj+buildbot
2016-06-23 14:21 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2016-06-23 13:39 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-ppc64be-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-ppc64be-native-gdbserver-m64/builds/3744>
Commit(s) tested:
60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add new command to create extra console/mi UIs
Testsuite log (gdb.sum and gdb.log) URL(s):
<Error fetching commit ID for 60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch master
2016-06-21 18:51 [binutils-gdb] Add new command to create extra console/mi UIs sergiodj+buildbot
` (6 preceding siblings ...)
2016-06-23 13:39 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
@ 2016-06-23 14:21 ` sergiodj+buildbot
2016-06-23 17:53 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-06-23 18:34 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj+buildbot
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2016-06-23 14:21 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-ppc64be-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-ppc64be-native-extended-gdbserver-m64/builds/3752>
Commit(s) tested:
60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add new command to create extra console/mi UIs
Testsuite log (gdb.sum and gdb.log) URL(s):
<Error fetching commit ID for 60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-ppc64le-native-extended-gdbserver-m64, branch master
2016-06-21 18:51 [binutils-gdb] Add new command to create extra console/mi UIs sergiodj+buildbot
` (7 preceding siblings ...)
2016-06-23 14:21 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-06-23 17:53 ` sergiodj+buildbot
2016-06-23 18:34 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj+buildbot
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2016-06-23 17:53 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-ppc64le-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-native-extended-gdbserver-m64/builds/3685>
Commit(s) tested:
60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add new command to create extra console/mi UIs
Testsuite log (gdb.sum and gdb.log) URL(s):
<Error fetching commit ID for 60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-ppc64le-native-gdbserver-m64, branch master
2016-06-21 18:51 [binutils-gdb] Add new command to create extra console/mi UIs sergiodj+buildbot
` (8 preceding siblings ...)
2016-06-23 17:53 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-06-23 18:34 ` sergiodj+buildbot
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2016-06-23 18:34 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-ppc64le-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-native-gdbserver-m64/builds/3673>
Commit(s) tested:
60eb5395fa7a7b8e3cd1841e38b6d1a0c16be0d0
Author(s) (in the same order as the commits):
Pedro Alves <palves@redhat.com>
Subject:
Add new command to create extra console/mi UIs
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-native-gdbserver-m64/.git/tree/?h=master&id=5594526aa76cdbc581b37c03f66cf1129cb93c38>
*** Diff to previous build ***
============================
new FAIL: gdb.opt/inline-cmds.exp: mi: step to inline call
new FAIL: gdb.opt/inline-cmds.exp: mi: step into inline call
============================
*** Complete list of XFAILs for this builder ***
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-ppc64le-native-gdbserver-m64/xfails/master/xfail;hb=b49a91b>
You can also see a pretty-printed version 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-ppc64le-native-gdbserver-m64/xfails/master/xfail.table;hb=b49a91b>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2016-06-23 18:08 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-21 18:51 [binutils-gdb] Add new command to create extra console/mi UIs sergiodj+buildbot
2016-06-21 18:50 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master sergiodj+buildbot
2016-06-22 9:22 ` Failures on Debian-i686, " sergiodj+buildbot
2016-06-22 11:00 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
2016-06-22 22:59 ` Failures on Debian-x86_64-m64, " sergiodj+buildbot
2016-06-22 23:28 ` Failures on Debian-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-06-23 12:44 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
2016-06-23 13:39 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
2016-06-23 14:21 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-06-23 17:53 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-06-23 18:34 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj+buildbot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).