public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Fedora-i686, branch master
  2019-06-25 23:39 [binutils-gdb] Create tui_disasm_window gdb-buildbot
@ 2019-06-25 23:31 ` gdb-buildbot
  2019-06-25 23:56 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: gdb-buildbot @ 2019-06-25 23:31 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/29

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5cf82909a7047cee471ee40cfe623250c258d76e

Subject of commit:
        Create tui_disasm_window

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/5c/5cf82909a7047cee471ee40cfe623250c258d76e

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.python/py-finish-breakpoint2.exp: check FinishBreakpoint in catch
new FAIL: gdb.python/py-finish-breakpoint2.exp: check finish BP removal
new FAIL: gdb.python/py-finish-breakpoint2.exp: continue to second exception
new FAIL: gdb.python/py-finish-breakpoint2.exp: set FinishBP after the exception
new FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs: deref_refs=true
new FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs=True, static_members=False
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=1: 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/5c/5cf82909a7047cee471ee40cfe623250c258d76e/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/5c/5cf82909a7047cee471ee40cfe623250c258d76e/xfail.table.gz>


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

* [binutils-gdb] Create tui_disasm_window
@ 2019-06-25 23:39 gdb-buildbot
  2019-06-25 23:31 ` Failures on Fedora-i686, branch master gdb-buildbot
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: gdb-buildbot @ 2019-06-25 23:39 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 5cf82909a7047cee471ee40cfe623250c258d76e ***

commit 5cf82909a7047cee471ee40cfe623250c258d76e
Author:     Tom Tromey <tom@tromey.com>
AuthorDate: Sun Jun 16 11:08:43 2019 -0600
Commit:     Tom Tromey <tom@tromey.com>
CommitDate: Tue Jun 25 07:48:27 2019 -0600

    Create tui_disasm_window
    
    This introduces the new tui_disasm_window class, which represents a
    disassembly window.  It shares a lot of behavior with the source
    window, so a new tui_source_window_base class is also created.
    
    gdb/ChangeLog
    2019-06-25  Tom Tromey  <tom@tromey.com>
    
            * tui/tui-data.h (struct tui_source_window_base): New struct.
            (struct tui_source_window): Derive from tui_source_window_base.
            (struct tui_disasm_window): New struct.
            * tui/tui-data.c (tui_source_window_base::clear_detail): Rename
            from tui_source_window::clear_detail.
            (tui_source_window_base): Rename from tui_source_window.
            (~tui_source_window_base): Rename from ~tui_source_window.
            (tui_alloc_win_info): Create a tui_disasm_window.

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 434d7dda79..0525b03ddd 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,16 @@
 2019-06-25  Tom Tromey  <tom@tromey.com>
 
+	* tui/tui-data.h (struct tui_source_window_base): New struct.
+	(struct tui_source_window): Derive from tui_source_window_base.
+	(struct tui_disasm_window): New struct.
+	* tui/tui-data.c (tui_source_window_base::clear_detail): Rename
+	from tui_source_window::clear_detail.
+	(tui_source_window_base): Rename from tui_source_window.
+	(~tui_source_window_base): Rename from ~tui_source_window.
+	(tui_alloc_win_info): Create a tui_disasm_window.
+
+2019-06-25  Tom Tromey  <tom@tromey.com>
+
 	* tui/tui-data.h (struct tui_source_window)
 	(struct tui_data_window): Declare destructors.
 	* tui/tui-data.c (~tui_source_window, ~tui_data_window): New
diff --git a/gdb/tui/tui-data.c b/gdb/tui/tui-data.c
index d24941c10d..1edf40b71b 100644
--- a/gdb/tui/tui-data.c
+++ b/gdb/tui/tui-data.c
@@ -176,7 +176,7 @@ tui_add_to_source_windows (struct tui_win_info *win_info)
 /* See tui-data.h.  */
 
 void
-tui_source_window::clear_detail ()
+tui_source_window_base::clear_detail ()
 {
   detail.source_info.gdbarch = NULL;
   detail.source_info.start_line_or_addr.loa = LOA_ADDRESS;
@@ -503,7 +503,7 @@ tui_win_info::tui_win_info (enum tui_win_type type)
   tui_init_generic_part (&generic);
 }
 
-tui_source_window::tui_source_window (enum tui_win_type type)
+tui_source_window_base::tui_source_window_base (enum tui_win_type type)
   : tui_win_info (type)
 {
   gdb_assert (type == SRC_WIN || type == DISASSEM_WIN);
@@ -539,8 +539,10 @@ tui_alloc_win_info (enum tui_win_type type)
   switch (type)
     {
     case SRC_WIN:
+      return new tui_source_window ();
+
     case DISASSEM_WIN:
-      return new tui_source_window (type);
+      return new tui_disasm_window ();
 
     case DATA_WIN:
       return new tui_data_window ();
@@ -617,7 +619,7 @@ tui_add_content_elements (struct tui_gen_win_info *win_info,
   return index_start;
 }
 
-tui_source_window::~tui_source_window ()
+tui_source_window_base::~tui_source_window_base ()
 {
   if (detail.source_info.fullname)
     {
diff --git a/gdb/tui/tui-data.h b/gdb/tui/tui-data.h
index 7adeb5687c..e09aad60b5 100644
--- a/gdb/tui/tui-data.h
+++ b/gdb/tui/tui-data.h
@@ -291,15 +291,45 @@ public:
   int is_highlighted = 0;
 };
 
-struct tui_source_window : public tui_win_info
+/* The base class for all source-like windows, namely the source and
+   disassembly windows.  */
+
+struct tui_source_window_base : public tui_win_info
 {
-  explicit tui_source_window (enum tui_win_type type);
-  ~tui_source_window () override;
-  DISABLE_COPY_AND_ASSIGN (tui_source_window);
+protected:
+  explicit tui_source_window_base (enum tui_win_type type);
+  ~tui_source_window_base () override;
+  DISABLE_COPY_AND_ASSIGN (tui_source_window_base);
+
+public:
 
   void clear_detail () override;
 };
 
+/* A TUI source window.  */
+
+struct tui_source_window : public tui_source_window_base
+{
+  tui_source_window ()
+    : tui_source_window_base (SRC_WIN)
+  {
+  }
+
+  DISABLE_COPY_AND_ASSIGN (tui_source_window);
+};
+
+/* A TUI disassembly window.  */
+
+struct tui_disasm_window : public tui_source_window_base
+{
+  tui_disasm_window ()
+    : tui_source_window_base (DISASSEM_WIN)
+  {
+  }
+
+  DISABLE_COPY_AND_ASSIGN (tui_disasm_window);
+};
+
 struct tui_data_window : public tui_win_info
 {
   tui_data_window ();


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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2019-06-25 23:39 [binutils-gdb] Create tui_disasm_window gdb-buildbot
  2019-06-25 23:31 ` Failures on Fedora-i686, branch master gdb-buildbot
@ 2019-06-25 23:56 ` gdb-buildbot
  2019-06-26  0:02 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: gdb-buildbot @ 2019-06-25 23:56 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-cc-with-index

Worker:
        fedora-x86-64-2

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5cf82909a7047cee471ee40cfe623250c258d76e

Subject of commit:
        Create tui_disasm_window

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=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/Fedora-x86_64-cc-with-index/5c/5cf82909a7047cee471ee40cfe623250c258d76e/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/5c/5cf82909a7047cee471ee40cfe623250c258d76e/xfail.table.gz>


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

* Failures on Fedora-x86_64-m32, branch master
  2019-06-25 23:39 [binutils-gdb] Create tui_disasm_window gdb-buildbot
  2019-06-25 23:31 ` Failures on Fedora-i686, branch master gdb-buildbot
  2019-06-25 23:56 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2019-06-26  0:02 ` gdb-buildbot
  2019-06-26  0:11 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: gdb-buildbot @ 2019-06-26  0:02 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/29

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5cf82909a7047cee471ee40cfe623250c258d76e

Subject of commit:
        Create tui_disasm_window

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/5c/5cf82909a7047cee471ee40cfe623250c258d76e

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/corefile.exp: core-file warning-free
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-m32/5c/5cf82909a7047cee471ee40cfe623250c258d76e/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/5c/5cf82909a7047cee471ee40cfe623250c258d76e/xfail.table.gz>


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

* Failures on Fedora-x86_64-m64, branch master
  2019-06-25 23:39 [binutils-gdb] Create tui_disasm_window gdb-buildbot
                   ` (2 preceding siblings ...)
  2019-06-26  0:02 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2019-06-26  0:11 ` gdb-buildbot
  2019-06-26  0:21 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: gdb-buildbot @ 2019-06-26  0:11 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m64

Worker:
        fedora-x86-64-3

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5cf82909a7047cee471ee40cfe623250c258d76e

Subject of commit:
        Create tui_disasm_window

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/5c/5cf82909a7047cee471ee40cfe623250c258d76e

*** 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
==============================================

*** 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/5c/5cf82909a7047cee471ee40cfe623250c258d76e/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/5c/5cf82909a7047cee471ee40cfe623250c258d76e/xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2019-06-25 23:39 [binutils-gdb] Create tui_disasm_window gdb-buildbot
                   ` (3 preceding siblings ...)
  2019-06-26  0:11 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2019-06-26  0:21 ` gdb-buildbot
  2019-06-26  0:21 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
  2019-06-26  0:28 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  6 siblings, 0 replies; 8+ messages in thread
From: gdb-buildbot @ 2019-06-26  0:21 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-2

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5cf82909a7047cee471ee40cfe623250c258d76e

Subject of commit:
        Create tui_disasm_window

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

*** Diff to previous build ***
==============================================
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
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
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:

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


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2019-06-25 23:39 [binutils-gdb] Create tui_disasm_window gdb-buildbot
                   ` (4 preceding siblings ...)
  2019-06-26  0:21 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-06-26  0:21 ` gdb-buildbot
  2019-06-26  0:28 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  6 siblings, 0 replies; 8+ messages in thread
From: gdb-buildbot @ 2019-06-26  0:21 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/4/builds/29

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5cf82909a7047cee471ee40cfe623250c258d76e

Subject of commit:
        Create tui_disasm_window

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

*** 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 -> 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/Fedora-x86_64-native-extended-gdbserver-m32/5c/5cf82909a7047cee471ee40cfe623250c258d76e/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/5c/5cf82909a7047cee471ee40cfe623250c258d76e/xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2019-06-25 23:39 [binutils-gdb] Create tui_disasm_window gdb-buildbot
                   ` (5 preceding siblings ...)
  2019-06-26  0:21 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2019-06-26  0:28 ` gdb-buildbot
  6 siblings, 0 replies; 8+ messages in thread
From: gdb-buildbot @ 2019-06-26  0:28 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/29

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        5cf82909a7047cee471ee40cfe623250c258d76e

Subject of commit:
        Create tui_disasm_window

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/5c/5cf82909a7047cee471ee40cfe623250c258d76e

*** 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:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/5c/5cf82909a7047cee471ee40cfe623250c258d76e/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/5c/5cf82909a7047cee471ee40cfe623250c258d76e/xfail.table.gz>


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

end of thread, other threads:[~2019-06-25 22:28 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-25 23:39 [binutils-gdb] Create tui_disasm_window gdb-buildbot
2019-06-25 23:31 ` Failures on Fedora-i686, branch master gdb-buildbot
2019-06-25 23:56 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2019-06-26  0:02 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2019-06-26  0:11 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2019-06-26  0:21 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2019-06-26  0:21 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2019-06-26  0:28 ` 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).