public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array
@ 2020-03-06  4:56 gdb-buildbot
  2020-03-06  5:15 ` Failures on Fedora-x86_64-cc-with-index, branch master gdb-buildbot
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-03-06  4:56 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 2a3d458be380d4940fc528dca63ded4c2bab6c12 ***

commit 2a3d458be380d4940fc528dca63ded4c2bab6c12
Author:     Tom Tromey <tom@tromey.com>
AuthorDate: Sat Feb 22 11:48:26 2020 -0700
Commit:     Tom Tromey <tom@tromey.com>
CommitDate: Sat Feb 22 11:48:27 2020 -0700

    Use TUI_DISASM_WIN instead of tui_win_list array
    
    This is a minor cleanup to change tui_get_low_disassembly_address to
    use TUI_DISASM_WIN, rather than the tui_win_list array.  This is more
    in line with what the rest of the TUI code does.
    
    gdb/ChangeLog
    2020-02-22  Tom Tromey  <tom@tromey.com>
    
            * tui/tui-disasm.c (tui_get_low_disassembly_address): Use
            TUI_DISASM_WIN, not tui_win_list.
    
    Change-Id: I999335ee3f63a4b570e84f320236b78f2bd5b780

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index ecdce315f7..532ab92b31 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2020-02-22  Tom Tromey  <tom@tromey.com>
+
+	* tui/tui-disasm.c (tui_get_low_disassembly_address): Use
+	TUI_DISASM_WIN, not tui_win_list.
+
 2020-02-22  Tom Tromey  <tom@tromey.com>
 
 	* valprint.c (generic_val_print_enum_1)
diff --git a/gdb/tui/tui-disasm.c b/gdb/tui/tui-disasm.c
index 547d2c9e6d..b0b53d64a6 100644
--- a/gdb/tui/tui-disasm.c
+++ b/gdb/tui/tui-disasm.c
@@ -429,8 +429,8 @@ tui_get_low_disassembly_address (struct gdbarch *gdbarch,
 
   /* Determine where to start the disassembly so that the pc is about
      in the middle of the viewport.  */
-  if (tui_win_list[DISASSEM_WIN] != NULL)
-    pos = tui_win_list[DISASSEM_WIN]->height;
+  if (TUI_DISASM_WIN != NULL)
+    pos = TUI_DISASM_WIN->height;
   else if (TUI_CMD_WIN == NULL)
     pos = tui_term_height () / 2 - 2;
   else


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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
@ 2020-03-06  5:15 ` gdb-buildbot
  2020-03-06  5:34 ` Failures on Fedora-i686, " gdb-buildbot
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-03-06  5:15 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-cc-with-index

Worker:
        fedora-x86-64-4

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2a3d458be380d4940fc528dca63ded4c2bab6c12

Subject of commit:
        Use TUI_DISASM_WIN instead of tui_win_list array

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3
==============================================

*** 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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//xfail.table.gz>


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

* Failures on Fedora-i686, branch master
  2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
  2020-03-06  5:15 ` Failures on Fedora-x86_64-cc-with-index, branch master gdb-buildbot
@ 2020-03-06  5:34 ` gdb-buildbot
  2020-03-06  5:36 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-03-06  5:34 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/2269

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2a3d458be380d4940fc528dca63ded4c2bab6c12

Subject of commit:
        Use TUI_DISASM_WIN instead of tui_win_list array

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
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-i686/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//xfail.table.gz>


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

* Failures on Fedora-x86_64-m64, branch master
  2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
  2020-03-06  5:15 ` Failures on Fedora-x86_64-cc-with-index, branch master gdb-buildbot
  2020-03-06  5:34 ` Failures on Fedora-i686, " gdb-buildbot
@ 2020-03-06  5:36 ` gdb-buildbot
  2020-03-06  5:43 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-03-06  5:36 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m64

Worker:
        fedora-x86-64-1

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2a3d458be380d4940fc528dca63ded4c2bab6c12

Subject of commit:
        Use TUI_DISASM_WIN instead of tui_win_list array

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12/

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 1st thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print z
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
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i3
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=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-m64/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//xfail.table.gz>


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

* Failures on Fedora-x86_64-m32, branch master
  2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
                   ` (2 preceding siblings ...)
  2020-03-06  5:36 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2020-03-06  5:43 ` gdb-buildbot
  2020-03-06  6:22 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-03-06  5:43 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m32

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/17/builds/2265

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2a3d458be380d4940fc528dca63ded4c2bab6c12

Subject of commit:
        Use TUI_DISASM_WIN instead of tui_win_list array

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12/

*** 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-m32/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
                   ` (3 preceding siblings ...)
  2020-03-06  5:43 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2020-03-06  6:22 ` gdb-buildbot
  2020-03-06  6:24 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-03-06  6:22 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-1

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2a3d458be380d4940fc528dca63ded4c2bab6c12

Subject of commit:
        Use TUI_DISASM_WIN instead of tui_win_list array

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=1: iter=2: continue until exit
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=1: iter=2: print re_run_var_1
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
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-extended-gdbserver-m32/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
                   ` (4 preceding siblings ...)
  2020-03-06  6:22 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2020-03-06  6:24 ` gdb-buildbot
  2020-03-06  9:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-03-06  6:24 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/2161

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2a3d458be380d4940fc528dca63ded4c2bab6c12

Subject of commit:
        Use TUI_DISASM_WIN instead of tui_win_list array

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print z
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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//xfail.table.gz>


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

* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
  2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
                   ` (5 preceding siblings ...)
  2020-03-06  6:24 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2020-03-06  9:35 ` gdb-buildbot
  2020-03-06 10:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-03-06  9:35 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/2046

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2a3d458be380d4940fc528dca63ded4c2bab6c12

Subject of commit:
        Use TUI_DISASM_WIN instead of tui_win_list array

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12/

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
==============================================

*** 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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//xfail.table.gz>


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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
                   ` (6 preceding siblings ...)
  2020-03-06  9:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2020-03-06 10:56 ` gdb-buildbot
  2020-03-07 10:01 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  2020-03-08 16:33 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-03-06 10:56 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/2077

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2a3d458be380d4940fc528dca63ded4c2bab6c12

Subject of commit:
        Use TUI_DISASM_WIN instead of tui_win_list array

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
==============================================

*** 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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
                   ` (7 preceding siblings ...)
  2020-03-06 10:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
@ 2020-03-07 10:01 ` gdb-buildbot
  2020-03-08 16:33 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-03-07 10:01 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m64

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/22/builds/2163

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2a3d458be380d4940fc528dca63ded4c2bab6c12

Subject of commit:
        Use TUI_DISASM_WIN instead of tui_win_list array

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "compile print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "compile print "
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print j
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
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-m64/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//xfail.table.gz>



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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
                   ` (8 preceding siblings ...)
  2020-03-07 10:01 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
@ 2020-03-08 16:33 ` gdb-buildbot
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-03-08 16:33 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m32

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/24/builds/2164

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        2a3d458be380d4940fc528dca63ded4c2bab6c12

Subject of commit:
        Use TUI_DISASM_WIN instead of tui_win_list array

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.threads/thread-unwindonsignal.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-gdbserver-m32/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//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/2a/2a3d458be380d4940fc528dca63ded4c2bab6c12//xfail.table.gz>



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

end of thread, other threads:[~2020-03-08 16:33 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-06  4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
2020-03-06  5:15 ` Failures on Fedora-x86_64-cc-with-index, branch master gdb-buildbot
2020-03-06  5:34 ` Failures on Fedora-i686, " gdb-buildbot
2020-03-06  5:36 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2020-03-06  5:43 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2020-03-06  6:22 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2020-03-06  6:24 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2020-03-06  9:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
2020-03-06 10:56 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
2020-03-07 10:01 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
2020-03-08 16:33 ` 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).