public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Ubuntu-Aarch64-m64, branch master
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
@ 2020-01-10 4:03 ` gdb-buildbot
2020-01-10 4:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 4:03 UTC (permalink / raw)
To: gdb-testers
Buildername:
Ubuntu-Aarch64-m64
Worker:
ubuntu-aarch64
Full Build URL:
https://gdb-buildbot.osci.io/#builders/8/builds/1642
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
9ae6bf640dc7c950e6f36097a3d2d760a132a542
Subject of commit:
gdb: Fix scrolling in TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542/
*** Diff to previous build ***
==============================================
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [binutils-gdb] gdb: Fix scrolling in TUI
@ 2020-01-10 4:03 gdb-buildbot
2020-01-10 4:03 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
` (9 more replies)
0 siblings, 10 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 4:03 UTC (permalink / raw)
To: gdb-testers
*** TEST RESULTS FOR COMMIT 9ae6bf640dc7c950e6f36097a3d2d760a132a542 ***
commit 9ae6bf640dc7c950e6f36097a3d2d760a132a542
Author: Tom Tromey <tom@tromey.com>
AuthorDate: Sun Dec 22 16:52:56 2019 -0700
Commit: Andrew Burgess <andrew.burgess@embecosm.com>
CommitDate: Thu Jan 9 23:11:46 2020 +0000
gdb: Fix scrolling in TUI
Hannes Domani pointed out that my previous patch to fix the "list"
command in the TUI instead broke vertical scrolling. While looking at
this, I found that do_scroll_vertical calls print_source_lines, which
seems like a very roundabout way to change the source window. This
patch removes this oddity and fixes the bug at the same time.
I've added a new test case. This is somewhat tricky, because the
obvious approach of sending a dummy command after the scroll did not
work -- due to how the TUI works, sennding a command causes the scroll
to take effect.
gdb/ChangeLog
2019-12-22 Tom Tromey <tom@tromey.com>
PR tui/18932:
* tui/tui-source.c (tui_source_window::do_scroll_vertical): Call
update_source_window, not print_source_lines.
gdb/testsuite/ChangeLog
2019-12-22 Tom Tromey <tom@tromey.com>
PR tui/18932:
* lib/tuiterm.exp (Term::wait_for): Rename from _accept. Return a
meangingful value.
(Term::command, Term::resize): Update.
* gdb.tui/basic.exp: Add scrolling test.
Change-Id: I9636a7c8a8cade37431c6165ee996a9d556ef1c8
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 0ff44e5001..4c789119ce 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2020-01-09 Tom Tromey <tom@tromey.com>
+
+ PR tui/18932:
+ * tui/tui-source.c (tui_source_window::do_scroll_vertical): Call
+ update_source_window, not print_source_lines.
+
2020-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
* tui/tui.c (tui_enable): Register tui hooks after calling
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 0f2333bc1c..16f3b5503d 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,11 @@
+2020-01-09 Tom Tromey <tom@tromey.com>
+
+ PR tui/18932:
+ * lib/tuiterm.exp (Term::wait_for): Rename from _accept. Return a
+ meangingful value.
+ (Term::command, Term::resize): Update.
+ * gdb.tui/basic.exp: Add scrolling test.
+
2020-01-09 Andrew Burgess <andrew.burgess@embecosm.com>
* gdb.tui/tui-layout-asm.exp: New file.
diff --git a/gdb/testsuite/gdb.tui/basic.exp b/gdb/testsuite/gdb.tui/basic.exp
index c3a3fdd4f5..be822f8a91 100644
--- a/gdb/testsuite/gdb.tui/basic.exp
+++ b/gdb/testsuite/gdb.tui/basic.exp
@@ -35,6 +35,19 @@ gdb_assert {![string match "No Source Available" $text]} \
Term::command "list main"
Term::check_contents "list main" "21 *return 0"
+# Get the first source line.
+set line [Term::get_line 1]
+# Send an up arrow.
+send_gdb "\033\[A"
+# Wait for a redraw and check that the first line changed.
+if {[Term::wait_for [string_to_regexp $line]] \
+ && [Term::get_line 1] != $line\
+ && [Term::get_line 2] == $line} {
+ pass "scroll up"
+} else {
+ fail "scroll up"
+}
+
Term::check_box "source box" 0 0 80 15
Term::command "layout asm"
diff --git a/gdb/testsuite/lib/tuiterm.exp b/gdb/testsuite/lib/tuiterm.exp
index 0307745d87..7adaf1b71a 100644
--- a/gdb/testsuite/lib/tuiterm.exp
+++ b/gdb/testsuite/lib/tuiterm.exp
@@ -388,8 +388,10 @@ namespace eval Term {
_clear_lines 0 $_rows
}
- # Accept some output from gdb and update the screen.
- proc _accept {wait_for} {
+ # Accept some output from gdb and update the screen. WAIT_FOR is
+ # a regexp matching the line to wait for. Return 0 on timeout, 1
+ # on success.
+ proc wait_for {wait_for} {
global expect_out
global gdb_prompt
variable _cur_x
@@ -424,7 +426,7 @@ namespace eval Term {
timeout {
# Assume a timeout means we somehow missed the
# expected result, and carry on.
- return
+ return 0
}
}
@@ -443,6 +445,8 @@ namespace eval Term {
set wait_for $prompt_wait_for
}
}
+
+ return 1
}
# Like ::clean_restart, but ensures that gdb starts in an
@@ -490,7 +494,7 @@ namespace eval Term {
# be supplied by this function.
proc command {cmd} {
send_gdb "$cmd\n"
- _accept [string_to_regexp $cmd]
+ wait_for [string_to_regexp $cmd]
}
# Return the text of screen line N, without attributes. Lines are
@@ -682,14 +686,14 @@ namespace eval Term {
# Due to the strange column resizing behavior, and because we
# don't care about this intermediate resize, we don't check
# the size here.
- _accept "@@ resize done $_resize_count"
+ wait_for "@@ resize done $_resize_count"
incr _resize_count
# Somehow the number of columns transmitted to gdb is one less
# than what we request from expect. We hide this weird
# details from the caller.
_do_resize $_rows $cols
stty columns [expr {$_cols + 1}] < $gdb_spawn_name
- _accept "@@ resize done $_resize_count, size = ${_cols}x${rows}"
+ wait_for "@@ resize done $_resize_count, size = ${_cols}x${rows}"
incr _resize_count
}
}
diff --git a/gdb/tui/tui-source.c b/gdb/tui/tui-source.c
index 1503cd4c63..13f2dc7cfe 100644
--- a/gdb/tui/tui-source.c
+++ b/gdb/tui/tui-source.c
@@ -136,26 +136,29 @@ tui_source_window::do_scroll_vertical (int num_to_scroll)
{
if (!content.empty ())
{
- struct tui_line_or_address l;
struct symtab *s;
struct symtab_and_line cursal = get_current_source_symtab_and_line ();
+ struct gdbarch *arch = gdbarch;
if (cursal.symtab == NULL)
- s = find_pc_line_symtab (get_frame_pc (get_selected_frame (NULL)));
+ {
+ struct frame_info *fi = get_selected_frame (NULL);
+ s = find_pc_line_symtab (get_frame_pc (fi));
+ arch = get_frame_arch (fi);
+ }
else
s = cursal.symtab;
- l.loa = LOA_LINE;
- l.u.line_no = start_line_or_addr.u.line_no
- + num_to_scroll;
+ int line_no = start_line_or_addr.u.line_no + num_to_scroll;
const std::vector<off_t> *offsets;
if (g_source_cache.get_line_charpos (s, &offsets)
- && l.u.line_no > offsets->size ())
- l.u.line_no = start_line_or_addr.u.line_no;
- if (l.u.line_no <= 0)
- l.u.line_no = 1;
+ && line_no > offsets->size ())
+ line_no = start_line_or_addr.u.line_no;
+ if (line_no <= 0)
+ line_no = 1;
- print_source_lines (s, l.u.line_no, l.u.line_no + 1, 0);
+ cursal.line = line_no;
+ update_source_window (arch, cursal);
}
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
2020-01-10 4:03 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
@ 2020-01-10 4:22 ` gdb-buildbot
2020-01-10 4:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 4:22 UTC (permalink / raw)
To: gdb-testers
Buildername:
Ubuntu-Aarch64-native-extended-gdbserver-m64
Worker:
ubuntu-aarch64
Full Build URL:
https://gdb-buildbot.osci.io/#builders/5/builds/1633
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
9ae6bf640dc7c950e6f36097a3d2d760a132a542
Subject of commit:
gdb: Fix scrolling in TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
2020-01-10 4:03 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
2020-01-10 4:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2020-01-10 4:38 ` gdb-buildbot
2020-01-10 8:03 ` Failures on Fedora-i686, " gdb-buildbot
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 4:38 UTC (permalink / raw)
To: gdb-testers
Buildername:
Ubuntu-Aarch64-native-gdbserver-m64
Worker:
ubuntu-aarch64
Full Build URL:
https://gdb-buildbot.osci.io/#builders/19/builds/1664
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
9ae6bf640dc7c950e6f36097a3d2d760a132a542
Subject of commit:
gdb: Fix scrolling in TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542/
*** 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://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-i686, branch master
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
` (2 preceding siblings ...)
2020-01-10 4:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
@ 2020-01-10 8:03 ` gdb-buildbot
2020-01-10 9:27 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 8:03 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-i686
Worker:
fedora-x86-64-3
Full Build URL:
https://gdb-buildbot.osci.io/#builders/18/builds/1770
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
9ae6bf640dc7c950e6f36097a3d2d760a132a542
Subject of commit:
gdb: Fix scrolling in TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-i686/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542/
*** Diff to previous build ***
==============================================
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
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://gdb-buildbot.osci.io/results/Fedora-i686/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-i686/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-m32, branch master
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
` (3 preceding siblings ...)
2020-01-10 8:03 ` Failures on Fedora-i686, " gdb-buildbot
@ 2020-01-10 9:27 ` gdb-buildbot
2020-01-10 9:29 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 9:27 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-m32
Worker:
fedora-x86-64-1
Full Build URL:
https://gdb-buildbot.osci.io/#builders/17/builds/1769
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
9ae6bf640dc7c950e6f36097a3d2d760a132a542
Subject of commit:
gdb: Fix scrolling in TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: cmd complete "b "
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: tab complete "b "
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://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
` (4 preceding siblings ...)
2020-01-10 9:27 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2020-01-10 9:29 ` gdb-buildbot
2020-01-10 9:32 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 9:29 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-native-extended-gdbserver-m32
Worker:
fedora-x86-64-3
Full Build URL:
https://gdb-buildbot.osci.io/#builders/4/builds/1767
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
9ae6bf640dc7c950e6f36097a3d2d760a132a542
Subject of commit:
gdb: Fix scrolling in TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m32/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=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:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m32/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m32/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-m64, branch master
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
` (5 preceding siblings ...)
2020-01-10 9:29 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2020-01-10 9:32 ` gdb-buildbot
2020-01-10 9:37 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 9:32 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-m64
Worker:
fedora-x86-64-2
Full Build URL:
https://gdb-buildbot.osci.io/#builders/3/builds/1829
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
9ae6bf640dc7c950e6f36097a3d2d760a132a542
Subject of commit:
gdb: Fix scrolling in TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.multi/multi-arch-exec.exp: first_arch=1: selected_thread=1: follow_exec_mode=same: continue across exec that changes architecture
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
` (6 preceding siblings ...)
2020-01-10 9:32 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2020-01-10 9:37 ` gdb-buildbot
2020-01-10 10:52 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
2020-01-10 10:52 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 9:37 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-native-extended-gdbserver-m64
Worker:
fedora-x86-64-4
Full Build URL:
https://gdb-buildbot.osci.io/#builders/2/builds/1767
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
9ae6bf640dc7c950e6f36097a3d2d760a132a542
Subject of commit:
gdb: Fix scrolling in TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
PASS -> FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar3 modified
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
` (8 preceding siblings ...)
2020-01-10 10:52 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
@ 2020-01-10 10:52 ` gdb-buildbot
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 10:52 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-native-gdbserver-m32
Worker:
fedora-x86-64-1
Full Build URL:
https://gdb-buildbot.osci.io/#builders/24/builds/1762
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
9ae6bf640dc7c950e6f36097a3d2d760a132a542
Subject of commit:
gdb: Fix scrolling in TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542/
*** 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 -> 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=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
` (7 preceding siblings ...)
2020-01-10 9:37 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2020-01-10 10:52 ` gdb-buildbot
2020-01-10 10:52 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 10:52 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-native-gdbserver-m64
Worker:
fedora-x86-64-3
Full Build URL:
https://gdb-buildbot.osci.io/#builders/22/builds/1765
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
9ae6bf640dc7c950e6f36097a3d2d760a132a542
Subject of commit:
gdb: Fix scrolling in TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 1st stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 1st stop: print j
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2020-01-10 10:52 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
2020-01-10 4:03 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
2020-01-10 4:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
2020-01-10 4:38 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
2020-01-10 8:03 ` Failures on Fedora-i686, " gdb-buildbot
2020-01-10 9:27 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2020-01-10 9:29 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2020-01-10 9:32 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2020-01-10 9:37 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2020-01-10 10:52 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
2020-01-10 10:52 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-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).