public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
2017-11-16 23:37 [binutils-gdb] Don't ever Quit out of resume sergiodj+buildbot
@ 2017-11-16 23:37 ` sergiodj+buildbot
2017-11-16 23:38 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 23:37 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-2
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/7981>
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/Fedora-x86_64-native-gdbserver-m32/d9/d930703d68ae160ddfe8ebe5fdcf416fb6090e1e/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/corefile.exp: core-file warning-free
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-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] 11+ messages in thread
* [binutils-gdb] Don't ever Quit out of resume
@ 2017-11-16 23:37 sergiodj+buildbot
2017-11-16 23:37 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch master sergiodj+buildbot
` (9 more replies)
0 siblings, 10 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 23:37 UTC (permalink / raw)
To: gdb-testers
*** TEST RESULTS FOR COMMIT d930703d68ae160ddfe8ebe5fdcf416fb6090e1e ***
Author: Pedro Alves <palves@redhat.com>
Branch: master
Commit: d930703d68ae160ddfe8ebe5fdcf416fb6090e1e
Don't ever Quit out of resume
If you have a breakpoint command that re-resumes the target, like:
break foo
commands
> c
> end
and then let the inferior run, hitting the breakpoint, and then press
Ctrl-C at just the right time, between GDB processing the stop at
"foo", and re-resuming the target, you'll hit the QUIT call in
infrun.c:resume.
With this hack, we can reproduce the bad case consistently:
--- a/gdb/inf-loop.c
+++ b/gdb/inf-loop.c
@@ -31,6 +31,8 @@
#include "top.h"
#include "observer.h"
+bool continue_hack;
+
/* General function to handle events in the inferior. */
void
@@ -64,6 +66,8 @@ inferior_event_handler (enum inferior_event_type event_type,
{
check_frame_language_change ();
+ continue_hack = true;
+
/* Don't propagate breakpoint commands errors. Either we're
stopping or some command resumes the inferior. The user will
be informed. */
diff --git a/gdb/infrun.c b/gdb/infrun.c
index d425664..c74b14c 100644
--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -2403,6 +2403,10 @@ resume (enum gdb_signal sig)
gdb_assert (!tp->stop_requested);
gdb_assert (!thread_is_in_step_over_chain (tp));
+ extern bool continue_hack;
+
+ if (continue_hack)
+ set_quit_flag ();
QUIT;
The GDB backtrace looks like this:
(top-gdb) bt
...
#3 0x0000000000612e8b in throw_quit(char const*, ...) (fmt=0xaf84a1 "Quit") at src/gdb/common/common-exceptions.c:408
#4 0x00000000007fc104 in quit() () at src/gdb/utils.c:748
#5 0x00000000006a79d2 in default_quit_handler() () at src/gdb/event-top.c:954
#6 0x00000000007fc134 in maybe_quit() () at src/gdb/utils.c:762
#7 0x00000000006f66a3 in resume(gdb_signal) (sig=GDB_SIGNAL_0) at src/gdb/infrun.c:2406
#8 0x0000000000700c3d in keep_going_pass_signal(execution_control_state*) (ecs=0x7ffcf3744e60) at src/gdb/infrun.c:7793
#9 0x00000000006f5fcd in start_step_over() () at src/gdb/infrun.c:2145
#10 0x00000000006f7b1f in proceed(unsigned long, gdb_signal) (addr=18446744073709551615, siggnal=GDB_SIGNAL_DEFAULT)
at src/gdb/infrun.c:3135
#11 0x00000000006ebdd4 in continue_1(int) (all_threads=0) at src/gdb/infcmd.c:842
#12 0x00000000006ec097 in continue_command(char*, int) (args=0x0, from_tty=0) at src/gdb/infcmd.c:938
#13 0x00000000004b5140 in do_cfunc(cmd_list_element*, char*, int) (c=0x2d18570, args=0x0, from_tty=0)
at src/gdb/cli/cli-decode.c:106
#14 0x00000000004b8219 in cmd_func(cmd_list_element*, char*, int) (cmd=0x2d18570, args=0x0, from_tty=0)
at src/gdb/cli/cli-decode.c:1952
#15 0x00000000007f1532 in execute_command(char*, int) (p=0x7ffcf37452b1 "", from_tty=0) at src/gdb/top.c:608
#16 0x00000000004bd127 in execute_control_command(command_line*) (cmd=0x3a88ef0) at src/gdb/cli/cli-script.c:485
#17 0x00000000005cae0c in bpstat_do_actions_1(bpstat*) (bsp=0x37edcf0) at src/gdb/breakpoint.c:4513
#18 0x00000000005caf67 in bpstat_do_actions() () at src/gdb/breakpoint.c:4563
#19 0x00000000006e8798 in inferior_event_handler(inferior_event_type, void*) (event_type=INF_EXEC_COMPLETE, client_data=0x0)
at src/gdb/inf-loop.c:72
#20 0x00000000006f9447 in fetch_inferior_event(void*) (client_data=0x0) at src/gdb/infrun.c:3970
#21 0x00000000006e870e in inferior_event_handler(inferior_event_type, void*) (event_type=INF_REG_EVENT, client_data=0x0)
at src/gdb/inf-loop.c:43
#22 0x0000000000494d58 in remote_async_serial_handler(serial*, void*) (scb=0x3585ca0, context=0x2cd1b80)
at src/gdb/remote.c:13820
#23 0x000000000044d682 in run_async_handler_and_reschedule(serial*) (scb=0x3585ca0) at src/gdb/ser-base.c:137
#24 0x000000000044d767 in fd_event(int, void*) (error=0, context=0x3585ca0) at src/gdb/ser-base.c:188
#25 0x00000000006a5686 in handle_file_event(file_handler*, int) (file_ptr=0x45997d0, ready_mask=1)
at src/gdb/event-loop.c:733
#26 0x00000000006a5c29 in gdb_wait_for_event(int) (block=1) at src/gdb/event-loop.c:859
#27 0x00000000006a4aa6 in gdb_do_one_event() () at src/gdb/event-loop.c:347
#28 0x00000000006a4ade in start_event_loop() () at src/gdb/event-loop.c:371
and when that happens, you end up with GDB's run control in quite a
messed up state. Something like this:
thread_function1 (arg=0x1) at threads.c:107
107 usleep (SLEEP); /* Loop increment. */
Quit
(gdb) c
Continuing.
** nothing happens, time passes..., press ctrl-c again **
^CQuit
(gdb) info threads
Id Target Id Frame
1 Thread 1462.1462 "threads" (running)
* 2 Thread 1462.1466 "threads" (running)
3 Thread 1462.1465 "function0" (running)
(gdb) c
Cannot execute this command while the selected thread is running.
(gdb)
The first "Quit" above is thrown from within "resume", and cancels run
control while GDB is in the middle of stepping over a breakpoint.
with step_over_info_valid_p() true. The next "c" didn't actually
resume anything, because GDB throught that the step-over was still in
progress. It wasn't, because the thread that was supposed to be
stepping over the breakpoint wasn't actually resumed.
So at this point, we press Ctrl-C again, and this time, the default
quit handler is called directly from the event loop
(event-top.c:default_quit_handler -> quit()), because gdb was left
owning the terminal (because the previous resume was cancelled before
we reach target_resume -> target_terminal::inferior()).
Note that the exception called from within resume ends up calling
normal_stop via resume_cleanups. That's very borked though, because
normal_stop is going to re-handle whatever was the last reported
event, possibly even re-running a hook stop... I think that the only
sane way to safely cancel the run control state machinery is to push
an event via handle_inferior_event like all other events.
The fix here does two things, and either alone would fix the problem
at hand:
#1 - passes the terminal to the inferior earlier, so that any QUIT
call from the point we declare the target as running goes to the
inferior directly, protecting run control from unsafe QUIT calls.
#2 - gets rid of this QUIT call in resume and of its related unsafe
resume_cleanups.
Aboout #2, the comment describing resume says:
/* Resume the inferior, but allow a QUIT. This is useful if the user
wants to interrupt some lengthy single-stepping operation
(for child processes, the SIGINT goes to the inferior, and so
we get a SIGINT random_signal, but for remote debugging and perhaps
other targets, that's not true).
but that's a really old comment that predates a lot of fixes to Ctrl-C
handling throughout both GDB core and the remote target, that made
sure that a Ctrl-C isn't ever lost. In any case, if some target
depended on this, a much better fix would be to make the target return
a SIGINT stop out of target_wait the next time that is called.
This was exposed by the new gdb.base/bp-cmds-continue-ctrl-c.exp
testcase added later in the series.
gdb/ChangeLog:
2017-11-16 Pedro Alves <palves@redhat.com>
* infrun.c (resume_cleanups): Delete.
(resume): No longer install a resume_cleanups cleanup nor call
QUIT.
(proceed): Pass the terminal to the inferior.
(keep_going_pass_signal): No longer install a resume_cleanups
cleanup.
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-m64, branch master
2017-11-16 23:37 [binutils-gdb] Don't ever Quit out of resume sergiodj+buildbot
2017-11-16 23:37 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch master sergiodj+buildbot
@ 2017-11-16 23:38 ` sergiodj+buildbot
2017-11-16 23:54 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 23:38 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-4
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-m64/builds/8037>
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/Fedora-x86_64-m64/d9/d930703d68ae160ddfe8ebe5fdcf416fb6090e1e/>
*** 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=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] 11+ messages in thread
* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
2017-11-16 23:37 [binutils-gdb] Don't ever Quit out of resume sergiodj+buildbot
2017-11-16 23:37 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch master sergiodj+buildbot
2017-11-16 23:38 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
@ 2017-11-16 23:54 ` sergiodj+buildbot
2017-11-17 0:00 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-16 23:54 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-2
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m64/builds/7978>
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/Fedora-x86_64-native-gdbserver-m64/d9/d930703d68ae160ddfe8ebe5fdcf416fb6090e1e/>
*** 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=23a5304>
You can also see a pretty-printed version 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=23a5304>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
2017-11-16 23:37 [binutils-gdb] Don't ever Quit out of resume sergiodj+buildbot
` (2 preceding siblings ...)
2017-11-16 23:54 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
@ 2017-11-17 0:00 ` sergiodj+buildbot
2017-11-17 0:09 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 0:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-4
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-extended-gdbserver-m64/builds/8023>
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/Fedora-x86_64-native-extended-gdbserver-m64/d9/d930703d68ae160ddfe8ebe5fdcf416fb6090e1e/>
*** 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/Fedora-x86_64-native-extended-gdbserver-m64/xfails/master/xfail;hb=bc0b53b>
You can also see a pretty-printed version 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=bc0b53b>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-m32, branch master
2017-11-16 23:37 [binutils-gdb] Don't ever Quit out of resume sergiodj+buildbot
` (3 preceding siblings ...)
2017-11-17 0:00 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2017-11-17 0:09 ` sergiodj+buildbot
2017-11-17 0:17 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 0:09 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-2
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-m32/builds/7996>
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/Fedora-x86_64-m32/d9/d930703d68ae160ddfe8ebe5fdcf416fb6090e1e/>
*** 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-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-native-extended-gdbserver-m32, branch master
2017-11-16 23:37 [binutils-gdb] Don't ever Quit out of resume sergiodj+buildbot
` (4 preceding siblings ...)
2017-11-17 0:09 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
@ 2017-11-17 0:17 ` sergiodj+buildbot
2017-11-17 0:31 ` Failures on Fedora-i686, " sergiodj+buildbot
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 0:17 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-m32/builds/7985>
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/Fedora-x86_64-native-extended-gdbserver-m32/d9/d930703d68ae160ddfe8ebe5fdcf416fb6090e1e/>
*** 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/Fedora-x86_64-native-extended-gdbserver-m32/xfails/master/xfail;hb=6f963b1>
You can also see a pretty-printed version 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=6f963b1>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-i686, branch master
2017-11-16 23:37 [binutils-gdb] Don't ever Quit out of resume sergiodj+buildbot
` (5 preceding siblings ...)
2017-11-17 0:17 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2017-11-17 0:31 ` sergiodj+buildbot
2017-11-17 13:42 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 0:31 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-i686/builds/8017>
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/Fedora-i686/d9/d930703d68ae160ddfe8ebe5fdcf416fb6090e1e/>
*** 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/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] 11+ 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
` (6 preceding siblings ...)
2017-11-17 0:31 ` Failures on Fedora-i686, " sergiodj+buildbot
@ 2017-11-17 13:42 ` sergiodj+buildbot
2017-11-17 14:07 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
2017-11-17 14:31 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
9 siblings, 0 replies; 11+ 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] 11+ messages in thread
* Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, branch master
2017-11-16 23:37 [binutils-gdb] Don't ever Quit out of resume sergiodj+buildbot
` (7 preceding siblings ...)
2017-11-17 13:42 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
@ 2017-11-17 14:07 ` sergiodj+buildbot
2017-11-17 14:31 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-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-native-extended-gdbserver-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-native-extended-gdbserver-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
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=16: 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] 11+ messages in thread
* Failures on Ubuntu-AArch32-native-gdbserver-m32, branch master
2017-11-16 23:37 [binutils-gdb] Don't ever Quit out of resume sergiodj+buildbot
` (8 preceding siblings ...)
2017-11-17 14:07 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2017-11-17 14:31 ` sergiodj+buildbot
9 siblings, 0 replies; 11+ messages in thread
From: sergiodj+buildbot @ 2017-11-17 14:31 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/2094>
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-native-gdbserver-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 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: step in ro region
============================
*** Complete list of XFAILs for this builder ***
To obtain 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-17 14:31 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-16 23:37 [binutils-gdb] Don't ever Quit out of resume sergiodj+buildbot
2017-11-16 23:37 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch master sergiodj+buildbot
2017-11-16 23:38 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
2017-11-16 23:54 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
2017-11-17 0:00 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2017-11-17 0:09 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
2017-11-17 0:17 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
2017-11-17 0:31 ` Failures on Fedora-i686, " sergiodj+buildbot
2017-11-17 13:42 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
2017-11-17 14:07 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
2017-11-17 14:31 ` 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).