public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Make all-gdbsupport depend on all-bfd
@ 2020-01-17 20:45 gdb-buildbot
  2020-01-17 20:45 ` Failures on Fedora-x86_64-m64, branch master gdb-buildbot
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: gdb-buildbot @ 2020-01-17 20:45 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT c4d3fc1480320886b6388d7e7700541a0cbb7714 ***

commit c4d3fc1480320886b6388d7e7700541a0cbb7714
Author:     Simon Marchi <simon.marchi@efficios.com>
AuthorDate: Fri Jan 17 13:40:10 2020 -0500
Commit:     Simon Marchi <simon.marchi@efficios.com>
CommitDate: Fri Jan 17 13:40:21 2020 -0500

    Make all-gdbsupport depend on all-bfd
    
    Trying to run "make all-gdbsupport" at the top-level in a build from scratch
    results in:
    
    make[2]: Entering directory '/home/smarchi/build/binutils-gdb/gdbsupport'
      CC       agent.o
    In file included from /home/smarchi/src/binutils-gdb/gdbsupport/common-defs.h:133,
                     from /home/smarchi/src/binutils-gdb/gdbsupport/agent.c:20:
    /home/smarchi/src/binutils-gdb/gdbsupport/common-types.h:35:10: fatal error: bfd.h: No such file or directory
       35 | #include "bfd.h"
          |          ^~~~~~~
    
    Before building all-gdbsupport, we need all-bfd to run, so that bfd.h is
    generated.
    
    (Once this patch is merged in the binutils-gdb repo, I'll send it to gcc
    to keep the files in sync.)
    
    ChangeLog:
    
            * Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
            * Makefile.in: Re-generate.

diff --git a/ChangeLog b/ChangeLog
index ebf3493628..f97f9623e9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2020-01-17  Simon Marchi  <simon.marchi@efficios.com>
+
+	* Makefile.def: Add dependencies of all-gdbsupport on all-bfd.
+	* Makefile.in: Re-generate.
+
 2020-01-14  Tom Tromey  <tom@tromey.com>
 
 	* src-release.sh (GDB_SUPPORT_DIRS): Add gdbsupport.
diff --git a/Makefile.def b/Makefile.def
index 079fd3e4f1..253eb45ef1 100644
--- a/Makefile.def
+++ b/Makefile.def
@@ -417,6 +417,7 @@ dependencies = { module=all-libgui; on=all-itcl; };
 
 dependencies = { module=configure-gdbsupport; on=configure-bfd; };
 dependencies = { module=configure-gdbsupport; on=configure-gnulib; };
+dependencies = { module=all-gdbsupport; on=all-bfd; };
 dependencies = { module=all-gdbsupport; on=all-gnulib; };
 
 // Host modules specific to binutils.
diff --git a/Makefile.in b/Makefile.in
index 3f6938a771..af38671cbe 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -51991,6 +51991,7 @@ all-gdb: maybe-all-opcodes
 all-gdb: maybe-all-libdecnumber
 all-gdb: maybe-all-libctf
 configure-gdbsupport: maybe-configure-bfd
+all-gdbsupport: maybe-all-bfd
 configure-gprof: maybe-configure-intl
 all-gprof: maybe-all-libiberty
 all-gprof: maybe-all-bfd


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

* Failures on Fedora-x86_64-m64, branch master
  2020-01-17 20:45 [binutils-gdb] Make all-gdbsupport depend on all-bfd gdb-buildbot
@ 2020-01-17 20:45 ` gdb-buildbot
  2020-01-17 20:56 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2020-01-17 20:45 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/1933

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        c4d3fc1480320886b6388d7e7700541a0cbb7714

Subject of commit:
        Make all-gdbsupport depend on all-bfd

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
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/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/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//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/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//xfail.table.gz>


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

* Failures on Fedora-x86_64-m32, branch master
  2020-01-17 20:45 [binutils-gdb] Make all-gdbsupport depend on all-bfd gdb-buildbot
  2020-01-17 20:45 ` Failures on Fedora-x86_64-m64, branch master gdb-buildbot
@ 2020-01-17 20:56 ` gdb-buildbot
  2020-01-17 21:27 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2020-01-17 20:56 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m32

Worker:
        fedora-x86-64-2

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

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        c4d3fc1480320886b6388d7e7700541a0cbb7714

Subject of commit:
        Make all-gdbsupport depend on all-bfd

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

*** 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
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/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//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/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//xfail.table.gz>


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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2020-01-17 20:45 [binutils-gdb] Make all-gdbsupport depend on all-bfd gdb-buildbot
  2020-01-17 20:45 ` Failures on Fedora-x86_64-m64, branch master gdb-buildbot
  2020-01-17 20:56 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2020-01-17 21:27 ` gdb-buildbot
  2020-01-17 21:41 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2020-01-17 21:27 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/1825

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        c4d3fc1480320886b6388d7e7700541a0cbb7714

Subject of commit:
        Make all-gdbsupport depend on all-bfd

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i02
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i12
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i22
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_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-cc-with-index/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//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/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2020-01-17 20:45 [binutils-gdb] Make all-gdbsupport depend on all-bfd gdb-buildbot
                   ` (2 preceding siblings ...)
  2020-01-17 21:27 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2020-01-17 21:41 ` gdb-buildbot
  2020-01-17 21:53 ` Failures on Fedora-i686, " gdb-buildbot
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2020-01-17 21:41 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/1871

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        c4d3fc1480320886b6388d7e7700541a0cbb7714

Subject of commit:
        Make all-gdbsupport depend on all-bfd

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

*** 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 -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
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-extended-gdbserver-m32/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//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/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//xfail.table.gz>


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

* Failures on Fedora-i686, branch master
  2020-01-17 20:45 [binutils-gdb] Make all-gdbsupport depend on all-bfd gdb-buildbot
                   ` (3 preceding siblings ...)
  2020-01-17 21:41 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2020-01-17 21:53 ` gdb-buildbot
  2020-01-17 22:30 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2020-01-17 21:53 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/1876

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        c4d3fc1480320886b6388d7e7700541a0cbb7714

Subject of commit:
        Make all-gdbsupport depend on all-bfd

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-misc: cmd complete "maint test-options require-delimiter -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-misc: tab complete "maint test-options require-delimiter -"
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply all print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply all print "
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-i686/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//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/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2020-01-17 20:45 [binutils-gdb] Make all-gdbsupport depend on all-bfd gdb-buildbot
                   ` (4 preceding siblings ...)
  2020-01-17 21:53 ` Failures on Fedora-i686, " gdb-buildbot
@ 2020-01-17 22:30 ` gdb-buildbot
  2020-01-17 23:01 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  2020-01-18 14:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2020-01-17 22:30 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/1871

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        c4d3fc1480320886b6388d7e7700541a0cbb7714

Subject of commit:
        Make all-gdbsupport depend on all-bfd

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

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
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: 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 -> 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-extended-gdbserver-m64/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//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/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2020-01-17 20:45 [binutils-gdb] Make all-gdbsupport depend on all-bfd gdb-buildbot
                   ` (5 preceding siblings ...)
  2020-01-17 22:30 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2020-01-17 23:01 ` gdb-buildbot
  2020-01-18 14:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2020-01-17 23:01 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/1872

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        c4d3fc1480320886b6388d7e7700541a0cbb7714

Subject of commit:
        Make all-gdbsupport depend on all-bfd

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i02
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i12
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i22
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/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//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/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//xfail.table.gz>


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

* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
  2020-01-17 20:45 [binutils-gdb] Make all-gdbsupport depend on all-bfd gdb-buildbot
                   ` (6 preceding siblings ...)
  2020-01-17 23:01 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
@ 2020-01-18 14:01 ` gdb-buildbot
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2020-01-18 14:01 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/1747

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        c4d3fc1480320886b6388d7e7700541a0cbb7714

Subject of commit:
        Make all-gdbsupport depend on all-bfd

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

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/collection.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.trace/collection.exp: setting breakpoint at begin
new UNRESOLVED: gdb.trace/collection.exp: setting breakpoint at end
==============================================

*** 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/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//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/c4/c4d3fc1480320886b6388d7e7700541a0cbb7714//xfail.table.gz>


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

end of thread, other threads:[~2020-01-17 23:48 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-17 20:45 [binutils-gdb] Make all-gdbsupport depend on all-bfd gdb-buildbot
2020-01-17 20:45 ` Failures on Fedora-x86_64-m64, branch master gdb-buildbot
2020-01-17 20:56 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2020-01-17 21:27 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2020-01-17 21:41 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2020-01-17 21:53 ` Failures on Fedora-i686, " gdb-buildbot
2020-01-17 22:30 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2020-01-17 23:01 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
2020-01-18 14:01 ` Failures on Ubuntu-Aarch64-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).