public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Display "main" on initial TUI startup
@ 2019-12-21  5:08 gdb-buildbot
  2019-12-21  5:22 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-21  5:08 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 77b97e006217ed089b588e6799a59334bd216c43 ***

commit 77b97e006217ed089b588e6799a59334bd216c43
Author:     Tom Tromey <tom@tromey.com>
AuthorDate: Tue Nov 12 18:20:58 2019 -0700
Commit:     Tom Tromey <tom@tromey.com>
CommitDate: Fri Dec 20 09:15:55 2019 -0700

    Display "main" on initial TUI startup
    
    I noticed that even when there's a symbol file, "tui enable" won't
    show "main" by default.  I think it should, and this patch fixes this.
    
    gdb/ChangeLog
    2019-12-20  Tom Tromey  <tom@tromey.com>
    
            * tui/tui.c (tui_enable): Call tui_display_main.
    
    gdb/testsuite/ChangeLog
    2019-12-20  Tom Tromey  <tom@tromey.com>
    
            * gdb.tui/list.exp: Check for source on initial listing.
    
    Change-Id: Ic7bfc930e1179f5b61111e30a2dae46a98b00064

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e4715362c0..1034aa85fe 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2019-12-20  Tom Tromey  <tom@tromey.com>
+
+	* tui/tui.c (tui_enable): Call tui_display_main.
+
 2019-12-20  Tom Tromey  <tom@tromey.com>
 
 	* tui/tui-disasm.c (tui_get_begin_asm_address): Use
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 4f8d8517e3..f25787c086 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2019-12-20  Tom Tromey  <tom@tromey.com>
+
+	* gdb.tui/list.exp: Check for source on initial listing.
+
 2019-12-11  Tom Tromey  <tromey@adacore.com>
 
 	* gdb.xml/tdesc-arch.exp (set_arch): Add "trans_mode" parameter.
diff --git a/gdb/testsuite/gdb.tui/list.exp b/gdb/testsuite/gdb.tui/list.exp
index 6efe1939c9..08153c695d 100644
--- a/gdb/testsuite/gdb.tui/list.exp
+++ b/gdb/testsuite/gdb.tui/list.exp
@@ -28,7 +28,7 @@ if {![Term::enter_tui]} {
     unsupported "TUI not supported"
 }
 
-Term::check_contents "initial source listing" "No Source Available"
+Term::check_contents "initial source listing" "21 *return 0"
 
 Term::command "layout asm"
 Term::check_contents "asm window shows main" "$hex <main>"
diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c
index a0d2e4c791..dbc890a9ad 100644
--- a/gdb/tui/tui.c
+++ b/gdb/tui/tui.c
@@ -513,6 +513,8 @@ tui_enable (void)
 
   if (deprecated_safe_get_selected_frame ())
     tui_show_frame_info (deprecated_safe_get_selected_frame ());
+  else
+    tui_display_main ();
 
   /* Restore TUI keymap.  */
   tui_set_key_mode (tui_current_key_mode);


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

* Failures on Ubuntu-Aarch64-m64, branch master
  2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
@ 2019-12-21  5:22 ` gdb-buildbot
  2019-12-21  5:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-21  5:22 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/8/builds/1502

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        77b97e006217ed089b588e6799a59334bd216c43

Subject of commit:
        Display "main" on initial TUI startup

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-m64/77/77b97e006217ed089b588e6799a59334bd216c43/

*** Diff to previous build ***
==============================================
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: setup: setting breakpoint at 49
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: setup: setting breakpoint at 66
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: can't run to main
==============================================

*** 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/77/77b97e006217ed089b588e6799a59334bd216c43//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/77/77b97e006217ed089b588e6799a59334bd216c43//xfail.table.gz>


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

* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
  2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
  2019-12-21  5:22 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
@ 2019-12-21  5:35 ` gdb-buildbot
  2019-12-21  5:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-21  5: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/1494

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        77b97e006217ed089b588e6799a59334bd216c43

Subject of commit:
        Display "main" on initial TUI startup

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 9: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.trace/trace-break.exp: 4 ftrace off: can't run to main
new UNRESOLVED: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
new UNRESOLVED: gdb.trace/trace-condition.exp: delete all breakpoints in delete_breakpoints
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
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/77/77b97e006217ed089b588e6799a59334bd216c43//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/77/77b97e006217ed089b588e6799a59334bd216c43//xfail.table.gz>


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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
  2019-12-21  5:22 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
  2019-12-21  5:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-12-21  5:58 ` gdb-buildbot
  2019-12-22  9:32 ` Failures on Fedora-i686, " gdb-buildbot
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-21  5:58 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/1525

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        77b97e006217ed089b588e6799a59334bd216c43

Subject of commit:
        Display "main" on initial TUI startup

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

*** 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/77/77b97e006217ed089b588e6799a59334bd216c43//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/77/77b97e006217ed089b588e6799a59334bd216c43//xfail.table.gz>


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

* Failures on Fedora-i686, branch master
  2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
                   ` (2 preceding siblings ...)
  2019-12-21  5:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
@ 2019-12-22  9:32 ` gdb-buildbot
  2019-12-22  9:53 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-22  9:32 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/1631

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        77b97e006217ed089b588e6799a59334bd216c43

Subject of commit:
        Display "main" on initial TUI startup

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

*** 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 KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
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/77/77b97e006217ed089b588e6799a59334bd216c43//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/77/77b97e006217ed089b588e6799a59334bd216c43//xfail.table.gz>


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

* Failures on Fedora-x86_64-m32, branch master
  2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
                   ` (3 preceding siblings ...)
  2019-12-22  9:32 ` Failures on Fedora-i686, " gdb-buildbot
@ 2019-12-22  9:53 ` gdb-buildbot
  2019-12-22 10:15 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-22  9:53 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/1630

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        77b97e006217ed089b588e6799a59334bd216c43

Subject of commit:
        Display "main" on initial TUI startup

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/corefile.exp: core-file warning-free
new FAIL: gdb.base/skip.exp: step using -fi + -fu: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -fi + -fu: skip -fi skip1.c -fu test_skip
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: skip delete
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 1
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 2
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 5
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 5
==============================================

*** 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/77/77b97e006217ed089b588e6799a59334bd216c43//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/77/77b97e006217ed089b588e6799a59334bd216c43//xfail.table.gz>


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

* Failures on Fedora-x86_64-m64, branch master
  2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
                   ` (4 preceding siblings ...)
  2019-12-22  9:53 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2019-12-22 10:15 ` gdb-buildbot
  2019-12-22 10:18 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-22 10:15 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/1689

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        77b97e006217ed089b588e6799a59334bd216c43

Subject of commit:
        Display "main" on initial TUI startup

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 5
new FAIL: gdb.base/skip.exp: step using -rfu for baz: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -rfu for baz: skip disable
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: 2nd stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j
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:

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


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
                   ` (6 preceding siblings ...)
  2019-12-22 10:18 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-12-22 10:18 ` gdb-buildbot
  2019-12-22 10:28 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  2019-12-22 10:45 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-22 10:18 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-2

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        77b97e006217ed089b588e6799a59334bd216c43

Subject of commit:
        Display "main" on initial TUI startup

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/corefile.exp: core-file warning-free
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS::"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS::f"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
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=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/77/77b97e006217ed089b588e6799a59334bd216c43//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/77/77b97e006217ed089b588e6799a59334bd216c43//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
                   ` (5 preceding siblings ...)
  2019-12-22 10:15 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2019-12-22 10:18 ` gdb-buildbot
  2019-12-22 10:18 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-22 10:18 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/1628

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        77b97e006217ed089b588e6799a59334bd216c43

Subject of commit:
        Display "main" on initial TUI startup

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: step after disabling 3: step 5
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
==============================================

*** 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/77/77b97e006217ed089b588e6799a59334bd216c43//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/77/77b97e006217ed089b588e6799a59334bd216c43//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
                   ` (7 preceding siblings ...)
  2019-12-22 10:18 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2019-12-22 10:28 ` gdb-buildbot
  2019-12-22 10:45 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-22 10: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/1623

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        77b97e006217ed089b588e6799a59334bd216c43

Subject of commit:
        Display "main" on initial TUI startup

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

*** 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/Fedora-x86_64-native-gdbserver-m32/77/77b97e006217ed089b588e6799a59334bd216c43//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/77/77b97e006217ed089b588e6799a59334bd216c43//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
                   ` (8 preceding siblings ...)
  2019-12-22 10:28 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2019-12-22 10:45 ` gdb-buildbot
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-22 10:45 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/1626

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        77b97e006217ed089b588e6799a59334bd216c43

Subject of commit:
        Display "main" on initial TUI startup

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

*** Diff to previous build ***
==============================================
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: 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-native-gdbserver-m64/77/77b97e006217ed089b588e6799a59334bd216c43//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/77/77b97e006217ed089b588e6799a59334bd216c43//xfail.table.gz>


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

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

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-21  5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
2019-12-21  5:22 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
2019-12-21  5:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
2019-12-21  5:58 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
2019-12-22  9:32 ` Failures on Fedora-i686, " gdb-buildbot
2019-12-22  9:53 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2019-12-22 10:15 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2019-12-22 10:18 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2019-12-22 10:18 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2019-12-22 10:28 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2019-12-22 10:45 ` Failures on Fedora-x86_64-native-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).