public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-11-10 18:21 [binutils-gdb] Remove can_highlight from TUI windows gdb-buildbot
@ 2019-11-10 18:21 ` gdb-buildbot
  2019-11-25 15:41 ` Failures on Fedora-i686, " gdb-buildbot
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-11-10 18:21 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/1151

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0b026263ea17155b57f7763901894be2cbb6c3ff

Subject of commit:
        Remove can_highlight from TUI windows

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/0b/0b026263ea17155b57f7763901894be2cbb6c3ff/

*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-gdbserver-m64/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//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/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//xfail.table.gz>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [binutils-gdb] Remove can_highlight from TUI windows
@ 2019-11-10 18:21 gdb-buildbot
  2019-11-10 18:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-11-10 18:21 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 0b026263ea17155b57f7763901894be2cbb6c3ff ***

commit 0b026263ea17155b57f7763901894be2cbb6c3ff
Author:     Tom Tromey <tom@tromey.com>
AuthorDate: Sun Nov 10 10:33:07 2019 -0700
Commit:     Tom Tromey <tom@tromey.com>
CommitDate: Sun Nov 10 10:33:07 2019 -0700

    Remove can_highlight from TUI windows
    
    Each TUI window has a "can_highlight" member.  However, this has the
    same meaning as "can_box" -- a window can be highlighted if and only
    if it can be boxed.  So, this patch removes can_highlight in favor of
    simply using can_box.
    
    gdb/ChangeLog
    2019-11-10  Tom Tromey  <tom@tromey.com>
    
            * tui/tui-wingeneral.c (tui_unhighlight_win): Use can_box.
            (tui_highlight_win): Likewise.
            (tui_win_info::check_and_display_highlight_if_needed): Likewise.
            * tui/tui-data.h (struct tui_win_info) <can_highlight>: Remove.
            * tui/tui-command.h (struct tui_cmd_window) <tui_cmd_window>:
            Don't set can_highlight.
    
    Change-Id: I35916859070efcdfcc6e692c71cc6070956dcfce

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index bac7f4419e..6f377f3347 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,12 @@
+2019-11-10  Tom Tromey  <tom@tromey.com>
+
+	* tui/tui-wingeneral.c (tui_unhighlight_win): Use can_box.
+	(tui_highlight_win): Likewise.
+	(tui_win_info::check_and_display_highlight_if_needed): Likewise.
+	* tui/tui-data.h (struct tui_win_info) <can_highlight>: Remove.
+	* tui/tui-command.h (struct tui_cmd_window) <tui_cmd_window>:
+	Don't set can_highlight.
+
 2019-11-10  Tom Tromey  <tom@tromey.com>
 
 	* cli/cli-style.h (class cli_style_option) <cli_style_option>:
diff --git a/gdb/tui/tui-command.h b/gdb/tui/tui-command.h
index 79516941c9..6a276df72e 100644
--- a/gdb/tui/tui-command.h
+++ b/gdb/tui/tui-command.h
@@ -30,7 +30,6 @@ struct tui_cmd_window : public tui_win_info
   tui_cmd_window ()
     : tui_win_info (CMD_WIN)
   {
-    can_highlight = false;
   }
 
   DISABLE_COPY_AND_ASSIGN (tui_cmd_window);
diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h
index 8af15735aa..0e45da5934 100644
--- a/gdb/tui/tui-data.h
+++ b/gdb/tui/tui-data.h
@@ -211,9 +211,6 @@ public:
   /* Window title to display.  */
   std::string title;
 
-  /* Can this window ever be highlighted?  */
-  bool can_highlight = true;
-
   /* Is this window highlighted?  */
   bool is_highlighted = false;
 };
diff --git a/gdb/tui/tui-wingeneral.c b/gdb/tui/tui-wingeneral.c
index b6dd3f9b26..f6a6903306 100644
--- a/gdb/tui/tui-wingeneral.c
+++ b/gdb/tui/tui-wingeneral.c
@@ -84,7 +84,7 @@ void
 tui_unhighlight_win (struct tui_win_info *win_info)
 {
   if (win_info != NULL 
-      && win_info->can_highlight
+      && win_info->can_box ()
       && win_info->handle != NULL)
     {
       box_win (win_info, false);
@@ -98,7 +98,7 @@ void
 tui_highlight_win (struct tui_win_info *win_info)
 {
   if (win_info != NULL
-      && win_info->can_highlight
+      && win_info->can_box ()
       && win_info->handle != NULL)
     {
       box_win (win_info, true);
@@ -110,7 +110,7 @@ tui_highlight_win (struct tui_win_info *win_info)
 void
 tui_win_info::check_and_display_highlight_if_needed ()
 {
-  if (can_highlight)
+  if (can_box ())
     {
       if (is_highlighted)
 	tui_highlight_win (this);


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Failures on Fedora-i686, branch master
  2019-11-10 18:21 [binutils-gdb] Remove can_highlight from TUI windows gdb-buildbot
  2019-11-10 18:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
@ 2019-11-25 15:41 ` gdb-buildbot
  2019-11-25 15:59 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-11-25 15:41 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/1272

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0b026263ea17155b57f7763901894be2cbb6c3ff

Subject of commit:
        Remove can_highlight from TUI windows

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/0b/0b026263ea17155b57f7763901894be2cbb6c3ff/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
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/Fedora-i686/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//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/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//xfail.table.gz>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Failures on Fedora-x86_64-cc-with-index, branch master
  2019-11-10 18:21 [binutils-gdb] Remove can_highlight from TUI windows gdb-buildbot
  2019-11-10 18:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
  2019-11-25 15:41 ` Failures on Fedora-i686, " gdb-buildbot
@ 2019-11-25 15:59 ` gdb-buildbot
  2019-11-25 16:09 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-11-25 15:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-cc-with-index

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/20/builds/1217

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0b026263ea17155b57f7763901894be2cbb6c3ff

Subject of commit:
        Remove can_highlight from TUI windows

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-cc-with-index/0b/0b026263ea17155b57f7763901894be2cbb6c3ff/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-cc-with-index/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//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-cc-with-index/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//xfail.table.gz>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Failures on Fedora-x86_64-m64, branch master
  2019-11-10 18:21 [binutils-gdb] Remove can_highlight from TUI windows gdb-buildbot
                   ` (2 preceding siblings ...)
  2019-11-25 15:59 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2019-11-25 16:09 ` gdb-buildbot
  2019-11-25 16:20 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
  2019-11-25 16:46 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-11-25 16:09 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m64

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/3/builds/1324

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0b026263ea17155b57f7763901894be2cbb6c3ff

Subject of commit:
        Remove can_highlight from TUI windows

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/0b/0b026263ea17155b57f7763901894be2cbb6c3ff/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//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/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//xfail.table.gz>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2019-11-10 18:21 [binutils-gdb] Remove can_highlight from TUI windows gdb-buildbot
                   ` (3 preceding siblings ...)
  2019-11-25 16:09 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2019-11-25 16:20 ` gdb-buildbot
  2019-11-25 16:46 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-11-25 16:20 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/1269

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0b026263ea17155b57f7763901894be2cbb6c3ff

Subject of commit:
        Remove can_highlight from TUI windows

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m32/0b/0b026263ea17155b57f7763901894be2cbb6c3ff/

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
UNRESOLVED -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
UNRESOLVED -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
UNRESOLVED -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m32/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//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/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//xfail.table.gz>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2019-11-10 18:21 [binutils-gdb] Remove can_highlight from TUI windows gdb-buildbot
                   ` (4 preceding siblings ...)
  2019-11-25 16:20 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2019-11-25 16:46 ` gdb-buildbot
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2019-11-25 16:46 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-extended-gdbserver-m64

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/2/builds/1269

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        0b026263ea17155b57f7763901894be2cbb6c3ff

Subject of commit:
        Remove can_highlight from TUI windows

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/0b/0b026263ea17155b57f7763901894be2cbb6c3ff/

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
FAIL -> UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
FAIL -> UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
FAIL -> UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
FAIL -> UNRESOLVED: 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:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//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/0b/0b026263ea17155b57f7763901894be2cbb6c3ff//xfail.table.gz>


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-11-25 16:46 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-10 18:21 [binutils-gdb] Remove can_highlight from TUI windows gdb-buildbot
2019-11-10 18:21 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master gdb-buildbot
2019-11-25 15:41 ` Failures on Fedora-i686, " gdb-buildbot
2019-11-25 15:59 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2019-11-25 16:09 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2019-11-25 16:20 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2019-11-25 16:46 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " 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).