public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Ubuntu-Aarch64-m64, branch master
2019-08-19 17:47 [binutils-gdb] Add --with-static-standard-libraries to the top level gdb-buildbot
@ 2019-08-19 17:27 ` gdb-buildbot
2019-08-19 17:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
` (6 subsequent siblings)
7 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-08-19 17:27 UTC (permalink / raw)
To: gdb-testers
Buildername:
Ubuntu-Aarch64-m64
Worker:
ubuntu-aarch64
Full Build URL:
https://gdb-buildbot.osci.io/#builders/8/builds/546
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c1a5d03a89a455d79f025c66dce83342de4d26ce
Subject of commit:
Add --with-static-standard-libraries to the top level
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-m64/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: single step over fork final pc
==============================================
*** 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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* [binutils-gdb] Add --with-static-standard-libraries to the top level
@ 2019-08-19 17:47 gdb-buildbot
2019-08-19 17:27 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
` (7 more replies)
0 siblings, 8 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-08-19 17:47 UTC (permalink / raw)
To: gdb-testers
*** TEST RESULTS FOR COMMIT c1a5d03a89a455d79f025c66dce83342de4d26ce ***
commit c1a5d03a89a455d79f025c66dce83342de4d26ce
Author: Tom Tromey <tom@tromey.com>
AuthorDate: Fri Jul 26 15:42:25 2019 -0600
Commit: Tom Tromey <tromey@adacore.com>
CommitDate: Mon Aug 19 10:17:11 2019 -0600
Add --with-static-standard-libraries to the top level
gdb should normally not be linked with -static-libstdc++. Currently
this has not caused problems, but it's incompatible with catching an
exception thrown from a shared library -- and a subsequent patch
changes gdb to do just this.
This patch adds a new --with-static-standard-libraries flag to the
top-level configure. It defaults to "auto", which means enabled if
gcc is being built, and disabled otherwise.
ChangeLog
2019-08-19 Tom Tromey <tom@tromey.com>
* configure: Rebuild.
* configure.ac: Add --with-static-standard-libraries.
diff --git a/ChangeLog b/ChangeLog
index 15615559bf..76c121f680 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2019-08-19 Tom Tromey <tom@tromey.com>
+
+ * configure: Rebuild.
+ * configure.ac: Add --with-static-standard-libraries.
+
2019-08-09 Nick Clifton <nickc@redhat.com>
* libiberty: Sync with gcc. Bring in:
diff --git a/configure b/configure
index 4d11148692..6a9719f609 100755
--- a/configure
+++ b/configure
@@ -802,6 +802,7 @@ with_gmp
with_gmp_include
with_gmp_lib
with_stage1_libs
+with_static_standard_libraries
with_stage1_ldflags
with_boot_libs
with_boot_ldflags
@@ -1572,6 +1573,9 @@ Optional Packages:
--with-gmp-include=PATH specify directory for installed GMP include files
--with-gmp-lib=PATH specify directory for the installed GMP library
--with-stage1-libs=LIBS libraries for stage1
+ --with-static-standard-libraries
+ use -static-libstdc++ and -static-libgcc
+ (default=auto)
--with-stage1-ldflags=FLAGS
linker flags for stage1
--with-boot-libs=LIBS libraries for stage2 and later
@@ -5824,6 +5828,23 @@ fi
+# Whether or not to use -static-libstdc++ and -static-libgcc. The
+# default is yes if gcc is being built; no otherwise. The reason for
+# this default is that gdb is sometimes linked against GNU Source
+# Highlight, which is a shared library that uses C++ exceptions. In
+# this case, -static-libstdc++ will cause crashes.
+
+# Check whether --with-static-standard-libraries was given.
+if test "${with_static_standard_libraries+set}" = set; then :
+ withval=$with_static_standard_libraries;
+else
+ with_static_standard_libraries=auto
+fi
+
+if test "$with_static_standard_libraries" = auto; then
+ with_static_standard_libraries=$have_compiler
+fi
+
# Linker flags to use for stage1 or when not bootstrapping.
# Check whether --with-stage1-ldflags was given.
@@ -5838,7 +5859,8 @@ else
# In stage 1, default to linking libstdc++ and libgcc statically with GCC
# if supported. But if the user explicitly specified the libraries to use,
# trust that they are doing what they want.
- if test "$stage1_libs" = "" -a "$have_static_libs" = yes; then
+ if test "$with_static_standard_libraries" = yes -a "$stage1_libs" = "" \
+ -a "$have_static_libs" = yes; then
stage1_ldflags="-static-libstdc++ -static-libgcc"
fi
fi
diff --git a/configure.ac b/configure.ac
index 854f71a34e..7433badc21 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1602,6 +1602,19 @@ AC_ARG_WITH(stage1-libs,
[stage1_libs=])
AC_SUBST(stage1_libs)
+# Whether or not to use -static-libstdc++ and -static-libgcc. The
+# default is yes if gcc is being built; no otherwise. The reason for
+# this default is that gdb is sometimes linked against GNU Source
+# Highlight, which is a shared library that uses C++ exceptions. In
+# this case, -static-libstdc++ will cause crashes.
+AC_ARG_WITH(static-standard-libraries,
+[AS_HELP_STRING([--with-static-standard-libraries],
+ [use -static-libstdc++ and -static-libgcc (default=auto)])],
+[], [with_static_standard_libraries=auto])
+if test "$with_static_standard_libraries" = auto; then
+ with_static_standard_libraries=$have_compiler
+fi
+
# Linker flags to use for stage1 or when not bootstrapping.
AC_ARG_WITH(stage1-ldflags,
[AS_HELP_STRING([--with-stage1-ldflags=FLAGS], [linker flags for stage1])],
@@ -1614,7 +1627,8 @@ AC_ARG_WITH(stage1-ldflags,
# In stage 1, default to linking libstdc++ and libgcc statically with GCC
# if supported. But if the user explicitly specified the libraries to use,
# trust that they are doing what they want.
- if test "$stage1_libs" = "" -a "$have_static_libs" = yes; then
+ if test "$with_static_standard_libraries" = yes -a "$stage1_libs" = "" \
+ -a "$have_static_libs" = yes; then
stage1_ldflags="-static-libstdc++ -static-libgcc"
fi])
AC_SUBST(stage1_ldflags)
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-08-19 17:47 [binutils-gdb] Add --with-static-standard-libraries to the top level gdb-buildbot
2019-08-19 17:27 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
@ 2019-08-19 17:48 ` gdb-buildbot
2019-08-19 21:06 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
` (5 subsequent siblings)
7 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-08-19 17:48 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/542
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c1a5d03a89a455d79f025c66dce83342de4d26ce
Subject of commit:
Add --with-static-standard-libraries to the top level
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: can't run to main
new UNRESOLVED: gdb.trace/trace-break.exp: 4 ftrace off: can't run to main
new UNRESOLVED: gdb.trace/trace-break.exp: 4 ftrace off: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.trace/trace-condition.exp: delete all breakpoints in delete_breakpoints
==============================================
*** 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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Fedora-x86_64-cc-with-index, branch master
2019-08-19 17:47 [binutils-gdb] Add --with-static-standard-libraries to the top level gdb-buildbot
2019-08-19 17:27 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
2019-08-19 17:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-08-19 21:06 ` gdb-buildbot
2019-08-19 21:22 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
` (4 subsequent siblings)
7 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-08-19 21:06 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/610
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c1a5d03a89a455d79f025c66dce83342de4d26ce
Subject of commit:
Add --with-static-standard-libraries to the top level
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-cc-with-index/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce/
*** 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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Fedora-x86_64-m64, branch master
2019-08-19 17:47 [binutils-gdb] Add --with-static-standard-libraries to the top level gdb-buildbot
` (2 preceding siblings ...)
2019-08-19 21:06 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2019-08-19 21:22 ` gdb-buildbot
2019-08-19 22:32 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
` (3 subsequent siblings)
7 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-08-19 21:22 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/632
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c1a5d03a89a455d79f025c66dce83342de4d26ce
Subject of commit:
Add --with-static-standard-libraries to the top level
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce/
*** Diff to previous build ***
==============================================
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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
2019-08-19 17:47 [binutils-gdb] Add --with-static-standard-libraries to the top level gdb-buildbot
` (3 preceding siblings ...)
2019-08-19 21:22 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2019-08-19 22:32 ` gdb-buildbot
2019-08-19 22:44 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
` (2 subsequent siblings)
7 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-08-19 22:32 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/607
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c1a5d03a89a455d79f025c66dce83342de4d26ce
Subject of commit:
Add --with-static-standard-libraries to the top level
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m32/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce/
*** 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-extended-gdbserver-m32/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
2019-08-19 17:47 [binutils-gdb] Add --with-static-standard-libraries to the top level gdb-buildbot
` (4 preceding siblings ...)
2019-08-19 22:32 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2019-08-19 22:44 ` gdb-buildbot
2019-08-19 23:00 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2019-08-19 23:16 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
7 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-08-19 22:44 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-native-gdbserver-m32
Worker:
fedora-x86-64-4
Full Build URL:
https://gdb-buildbot.osci.io/#builders/24/builds/607
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c1a5d03a89a455d79f025c66dce83342de4d26ce
Subject of commit:
Add --with-static-standard-libraries to the top level
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce/
*** 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 -> UNRESOLVED: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: probe for target remote
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
2019-08-19 17:47 [binutils-gdb] Add --with-static-standard-libraries to the top level gdb-buildbot
` (5 preceding siblings ...)
2019-08-19 22:44 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2019-08-19 23:00 ` gdb-buildbot
2019-08-19 23:16 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
7 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-08-19 23:00 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/608
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c1a5d03a89a455d79f025c66dce83342de4d26ce
Subject of commit:
Add --with-static-standard-libraries to the top level
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce/
*** 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
==============================================
*** 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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
2019-08-19 17:47 [binutils-gdb] Add --with-static-standard-libraries to the top level gdb-buildbot
` (6 preceding siblings ...)
2019-08-19 23:00 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-08-19 23:16 ` gdb-buildbot
7 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-08-19 23:16 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-native-gdbserver-m64
Worker:
fedora-x86-64-1
Full Build URL:
https://gdb-buildbot.osci.io/#builders/22/builds/607
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c1a5d03a89a455d79f025c66dce83342de4d26ce
Subject of commit:
Add --with-static-standard-libraries to the top level
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce/
*** Diff to previous build ***
==============================================
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-gdbserver-m64/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//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/c1/c1a5d03a89a455d79f025c66dce83342de4d26ce//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-24 3:57 [binutils-gdb] gdb: New maintenance command to print XML target description gdb-buildbot
@ 2020-06-24 3:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-24 3:57 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/3152
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
caa7fd04f652c00caf5c84d486c622cb1ffaf6c9
Subject of commit:
gdb: New maintenance command to print XML target description
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ca/caa7fd04f652c00caf5c84d486c622cb1ffaf6c9/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: brk instruction 0 causes SIGTRAP
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ca/caa7fd04f652c00caf5c84d486c622cb1ffaf6c9//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/ca/caa7fd04f652c00caf5c84d486c622cb1ffaf6c9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-24 3:00 [binutils-gdb] gdb: Print compatible information within print_xml_feature gdb-buildbot
@ 2020-06-24 3:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-24 3:00 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/3151
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
fbf42f4e6d04745fe615dce1abd0190b78e368a6
Subject of commit:
gdb: Print compatible information within print_xml_feature
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fb/fbf42f4e6d04745fe615dce1abd0190b78e368a6/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/fb/fbf42f4e6d04745fe615dce1abd0190b78e368a6//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/fb/fbf42f4e6d04745fe615dce1abd0190b78e368a6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-24 2:03 [binutils-gdb] gdb: Allow target description to be dumped even when it is remote gdb-buildbot
@ 2020-06-24 2:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-24 2:03 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/3150
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
20821f4ed1c3b93344a8a40e9344fe356c2605c2
Subject of commit:
gdb: Allow target description to be dumped even when it is remote
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/20/20821f4ed1c3b93344a8a40e9344fe356c2605c2/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/20/20821f4ed1c3b93344a8a40e9344fe356c2605c2//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/20/20821f4ed1c3b93344a8a40e9344fe356c2605c2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-23 22:49 [binutils-gdb] Fix "maint selftest" regression, add struct scoped_mock_context gdb-buildbot
@ 2020-06-23 23:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-23 23:09 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/3147
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
236ef0346d88efffd1ca1da1a5d80724cb145660
Subject of commit:
Fix "maint selftest" regression, add struct scoped_mock_context
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/23/236ef0346d88efffd1ca1da1a5d80724cb145660/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: brk instruction 2 causes SIGTRAP
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/23/236ef0346d88efffd1ca1da1a5d80724cb145660//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/23/236ef0346d88efffd1ca1da1a5d80724cb145660//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-23 21:04 [binutils-gdb] Improve -Wunused-value testcase build failures fix gdb-buildbot
@ 2020-06-23 21:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-23 21:04 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/3145
Author:
Gary Benson <gbenson@redhat.com>
Commit tested:
7e4b9c4cd3b83be4c52eb475a6ef6b3fa4946cc5
Subject of commit:
Improve -Wunused-value testcase build failures fix
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7e/7e4b9c4cd3b83be4c52eb475a6ef6b3fa4946cc5/
*** 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
==============================================
*** 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/7e/7e4b9c4cd3b83be4c52eb475a6ef6b3fa4946cc5//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/7e/7e4b9c4cd3b83be4c52eb475a6ef6b3fa4946cc5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
@ 2020-06-23 18:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-23 18:09 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/3142
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
d711ee67aca06c9753f09dc154eb8c75cb4f58ef
Subject of commit:
gdb: Convert language la_printstr field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//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/d7/d711ee67aca06c9753f09dc154eb8c75cb4f58ef//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-23 17:11 [binutils-gdb] gdb: Convert language la_printchar field to a method gdb-buildbot
@ 2020-06-23 17:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-23 17:11 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/3141
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
52b50f2c1b1eaf6fd6e685e2c9575f92c581a6dc
Subject of commit:
gdb: Convert language la_printchar field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/52/52b50f2c1b1eaf6fd6e685e2c9575f92c581a6dc/
*** Diff to previous build ***
==============================================
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/52/52b50f2c1b1eaf6fd6e685e2c9575f92c581a6dc//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/52/52b50f2c1b1eaf6fd6e685e2c9575f92c581a6dc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-23 16:13 [binutils-gdb] gdb: Convert language la_emitchar field to a method gdb-buildbot
@ 2020-06-23 16:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-23 16:13 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/3140
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
ec8cec5b96e2ebbd5e25a737c69d311970a8b219
Subject of commit:
gdb: Convert language la_emitchar field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ec/ec8cec5b96e2ebbd5e25a737c69d311970a8b219/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: brk instruction 2 causes SIGTRAP
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not detected
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new UNRESOLVED: gdb.trace/actions-changed.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/actions-changed.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.trace/trace-break.exp: 4 trace on: 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-native-extended-gdbserver-m64/ec/ec8cec5b96e2ebbd5e25a737c69d311970a8b219//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/ec/ec8cec5b96e2ebbd5e25a737c69d311970a8b219//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-23 12:09 [binutils-gdb] Avoid testcase build failures with -Wunused-value gdb-buildbot
@ 2020-06-23 12:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-23 12:09 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/3136
Author:
Gary Benson <gbenson@redhat.com>
Commit tested:
2e573c0a3f9de232587f75de0af765abb8e193b9
Subject of commit:
Avoid testcase build failures with -Wunused-value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2e/2e573c0a3f9de232587f75de0af765abb8e193b9/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2e/2e573c0a3f9de232587f75de0af765abb8e193b9//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/2e/2e573c0a3f9de232587f75de0af765abb8e193b9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-23 9:50 [binutils-gdb] gdb: Add --with-python-libdir to gdb's --configuration output gdb-buildbot
@ 2020-06-23 9:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-23 9:50 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/3135
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
378258006c924e258f2433a94c1d9d7cb462e128
Subject of commit:
gdb: Add --with-python-libdir to gdb's --configuration output
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/37/378258006c924e258f2433a94c1d9d7cb462e128/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/37/378258006c924e258f2433a94c1d9d7cb462e128//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/37/378258006c924e258f2433a94c1d9d7cb462e128//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-22 22:07 [binutils-gdb] NEWS and documentation for alias default-args related concept and commands gdb-buildbot
@ 2020-06-22 22:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-22 22:07 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/3134
Author:
Philippe Waroquiers <philippe.waroquiers@skynet.be>
Commit tested:
5b860c93e3c659625d92a2d2247712a84eac1041
Subject of commit:
NEWS and documentation for alias default-args related concept and commands.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5b/5b860c93e3c659625d92a2d2247712a84eac1041/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/5b/5b860c93e3c659625d92a2d2247712a84eac1041//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/5b/5b860c93e3c659625d92a2d2247712a84eac1041//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-22 19:54 [binutils-gdb] default-args: allow to define default arguments for aliases gdb-buildbot
@ 2020-06-22 20:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-22 20:13 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/3132
Author:
Philippe Waroquiers <philippe.waroquiers@skynet.be>
Commit tested:
cf00cd6faf31c208bbfe107140c26895412214bb
Subject of commit:
default-args: allow to define default arguments for aliases
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/cf/cf00cd6faf31c208bbfe107140c26895412214bb/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.base/alias.exp: alias foo=bar
PASS -> FAIL: gdb.base/default.exp: help
PASS -> FAIL: gdb.base/default.exp: help "h" abbreviation
PASS -> FAIL: gdb.base/help.exp: help aliases
PASS -> FAIL: gdb.base/page.exp: paged help
PASS -> FAIL: gdb.base/page.exp: unpaged help
PASS -> FAIL: gdb.base/style.exp: apropos -v cut for 'thre
PASS -> FAIL: gdb.base/style.exp: help classes of commands styled with title
PASS -> FAIL: gdb.python/python.exp: verify help to uiout
==============================================
*** 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/cf/cf00cd6faf31c208bbfe107140c26895412214bb//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/cf/cf00cd6faf31c208bbfe107140c26895412214bb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-22 17:58 [binutils-gdb] Disable parts of gdb.base/source-dir.exp on remote host gdb-buildbot
@ 2020-06-22 17:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-22 17:58 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/3131
Author:
Sandra Loosemore <sandra@codesourcery.com>
Commit tested:
e822f2cda9bc484adb5f8860050640a5c6f1ced9
Subject of commit:
Disable parts of gdb.base/source-dir.exp on remote host
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e8/e822f2cda9bc484adb5f8860050640a5c6f1ced9/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not detected
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e8/e822f2cda9bc484adb5f8860050640a5c6f1ced9//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/e8/e822f2cda9bc484adb5f8860050640a5c6f1ced9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-22 15:37 [binutils-gdb] aarch64: Normalize and sort feature bit macros gdb-buildbot
@ 2020-06-22 15:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-22 15:37 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/3130
Author:
Alex Coplan <alex.coplan@arm.com>
Commit tested:
359157df2087894563a900e5f63299b42f460be2
Subject of commit:
aarch64: Normalize and sort feature bit macros
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/35/359157df2087894563a900e5f63299b42f460be2/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/35/359157df2087894563a900e5f63299b42f460be2//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/35/359157df2087894563a900e5f63299b42f460be2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-22 12:47 [binutils-gdb] gdb/jit: return bool in jit_breakpoint_re_set_internal and jit_read_descriptor gdb-buildbot
@ 2020-06-22 12:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-22 12:47 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/3127
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
bd920864f3dc2cad376989a642ab774aef6b2fce
Subject of commit:
gdb/jit: return bool in jit_breakpoint_re_set_internal and jit_read_descriptor
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bd/bd920864f3dc2cad376989a642ab774aef6b2fce/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 0
==============================================
*** 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/bd/bd920864f3dc2cad376989a642ab774aef6b2fce//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/bd/bd920864f3dc2cad376989a642ab774aef6b2fce//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-22 11:01 [binutils-gdb] Solaris, target_wait(), don't rely on inferior_ptid gdb-buildbot
@ 2020-06-22 11:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-22 11: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/3126
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
f809832224cc45eb58812f6d4bb03cbf52fad980
Subject of commit:
Solaris, target_wait(), don't rely on inferior_ptid
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f8/f809832224cc45eb58812f6d4bb03cbf52fad980/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f8/f809832224cc45eb58812f6d4bb03cbf52fad980//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/f8/f809832224cc45eb58812f6d4bb03cbf52fad980//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-22 2:50 [binutils-gdb] RISC-V: Don't assume the priv attributes are in order when handling them gdb-buildbot
@ 2020-06-22 2:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-22 2:50 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/3124
Author:
Nelson Chu <nelson.chu@sifive.com>
Commit tested:
cbd7581f343d85b4216db2eefdf601f6d988062d
Subject of commit:
RISC-V: Don't assume the priv attributes are in order when handling them.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/cb/cbd7581f343d85b4216db2eefdf601f6d988062d/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/cb/cbd7581f343d85b4216db2eefdf601f6d988062d//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/cb/cbd7581f343d85b4216db2eefdf601f6d988062d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-21 18:16 [binutils-gdb] Various procfs.c cleanups gdb-buildbot
@ 2020-06-21 18:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-21 18:16 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/3123
Author:
Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
Commit tested:
196535a69c8568342e62fdf5e3f5ade04470fd6a
Subject of commit:
Various procfs.c cleanups
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/19/196535a69c8568342e62fdf5e3f5ade04470fd6a/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/19/196535a69c8568342e62fdf5e3f5ade04470fd6a//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/19/196535a69c8568342e62fdf5e3f5ade04470fd6a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-21 13:34 [binutils-gdb] PR26132, ar creates invalid libraries for some targets with plugins enabled gdb-buildbot
@ 2020-06-21 13:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-21 13:34 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/3121
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
1e92785005ce880a5fac9d022f05cdcff91c3091
Subject of commit:
PR26132, ar creates invalid libraries for some targets with plugins enabled
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1e/1e92785005ce880a5fac9d022f05cdcff91c3091/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/1e/1e92785005ce880a5fac9d022f05cdcff91c3091//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/1e/1e92785005ce880a5fac9d022f05cdcff91c3091//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-21 1:10 [binutils-gdb] Fix gdb.base/list-missing-source.exp on remote host gdb-buildbot
@ 2020-06-21 1:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-21 1:10 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/3117
Author:
Sandra Loosemore <sandra@codesourcery.com>
Commit tested:
4d91c2a4677b90802c8d369190927921bf8ee97d
Subject of commit:
Fix gdb.base/list-missing-source.exp on remote host.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4d/4d91c2a4677b90802c8d369190927921bf8ee97d/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: all brk instructions triggered
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 2
==============================================
*** 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/4d/4d91c2a4677b90802c8d369190927921bf8ee97d//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/4d/4d91c2a4677b90802c8d369190927921bf8ee97d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-20 0:04 [binutils-gdb] [gdb/testsuite] Limit default_target_compile override gdb-buildbot
@ 2020-06-20 0:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-20 0:23 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/3115
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
37ab86550b9da31d6c32c2d3384bd27f0426e935
Subject of commit:
[gdb/testsuite] Limit default_target_compile override
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/37/37ab86550b9da31d6c32c2d3384bd27f0426e935/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: brk instruction 1 causes SIGTRAP
PASS -> FAIL: gdb.arch/ftrace-insn-reloc.exp: IPA loaded
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: change addr: address changed
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: change addr: initial run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: change addr: initial run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: change addr: second run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: change addr: second run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: same addr: initial run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: same addr: initial run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: same addr: second run: get address of __jit_debug_descriptor
PASS -> FAIL: gdb.base/jit-reader-simple.exp: shared: same addr: second run: maint info breakpoints shows jit breakpoint
PASS -> FAIL: gdb.base/shlib-call.exp: next over shr1
PASS -> FAIL: gdb.base/shlib-call.exp: next to shr1
PASS -> FAIL: gdb.base/shlib-call.exp: print g
PASS -> FAIL: gdb.base/shlib-call.exp: print shr1
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 debug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 debug, lib2 nodebug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 debug, lib1 first
PASS -> FAIL: gdb.base/solib-weak.exp: run to breakpoint - lib1 nodebug, lib2 nodebug, lib1 first
PASS -> FAIL: gdb.base/step-test.exp: next 1
PASS -> FAIL: gdb.base/step-test.exp: next 2
PASS -> FAIL: gdb.base/step-test.exp: next 3
PASS -> FAIL: gdb.base/step-test.exp: next over
PASS -> FAIL: gdb.base/step-test.exp: nexti over function
PASS -> FAIL: gdb.base/step-test.exp: step 1
PASS -> FAIL: gdb.base/step-test.exp: step 3
PASS -> FAIL: gdb.base/step-test.exp: step out
PASS -> FAIL: gdb.base/step-test.exp: stepi into function
PASS -> FAIL: gdb.base/step-test.exp: stepi to next line
PASS -> FAIL: gdb.base/step-test.exp: stepi: finish call
PASS -> FAIL: gdb.base/store.exp: continue to add_struct_1
PASS -> FAIL: gdb.base/store.exp: continue to add_struct_2
PASS -> FAIL: gdb.base/store.exp: continue to add_struct_3
PASS -> FAIL: gdb.base/store.exp: continue to add_struct_4
PASS -> FAIL: gdb.base/store.exp: continue to wack_struct_1
PASS -> FAIL: gdb.base/store.exp: continue to wack_struct_2
PASS -> FAIL: gdb.base/store.exp: continue to wack_struct_3
PASS -> FAIL: gdb.base/store.exp: continue to wack_struct_4
PASS -> FAIL: gdb.base/store.exp: var struct 1 u; next to add_struct_1 call
PASS -> FAIL: gdb.base/store.exp: var struct 1 u; print new u, expecting {s = \{1}}
PASS -> FAIL: gdb.base/store.exp: var struct 2 u; next to add_struct_2 call
PASS -> FAIL: gdb.base/store.exp: var struct 2 u; print new u, expecting {s = \{1, 2}}
PASS -> FAIL: gdb.base/store.exp: var struct 3 u; next to add_struct_3 call
PASS -> FAIL: gdb.base/store.exp: var struct 3 u; print new u, expecting {s = \{1, 2, 3}}
PASS -> FAIL: gdb.base/store.exp: var struct 4 u; next to add_struct_4 call
PASS -> FAIL: gdb.base/store.exp: var struct 4 u; print new u, expecting {s = \{1, 2, 3, 4}}
PASS -> FAIL: gdb.base/type-opaque.exp: opaque struct type resolving
PASS -> FAIL: gdb.base/type-opaque.exp: opaque union type resolving
PASS -> FAIL: gdb.cp/ovldbreak.exp: breakpoint info
PASS -> KFAIL: gdb.cp/re-set-overloaded.exp: breakpoint resolved
PASS -> FAIL: gdb.reverse/step-precsave.exp: finish out of fn call
PASS -> FAIL: gdb.reverse/step-precsave.exp: next over call
PASS -> FAIL: gdb.reverse/step-precsave.exp: next test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: next test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next over call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse next test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step into fn call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step out of called fn
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse stepi from a function call
PASS -> FAIL: gdb.reverse/step-precsave.exp: simple reverse stepi
PASS -> FAIL: gdb.reverse/step-precsave.exp: simple stepi
PASS -> FAIL: gdb.reverse/step-precsave.exp: step test 1
PASS -> FAIL: gdb.reverse/step-precsave.exp: step test 2
PASS -> FAIL: gdb.reverse/step-precsave.exp: step up to call
PASS -> FAIL: gdb.reverse/step-precsave.exp: stepi back from function call
PASS -> FAIL: gdb.reverse/step-reverse.exp: finish out of fn call
PASS -> FAIL: gdb.reverse/step-reverse.exp: next over call
PASS -> FAIL: gdb.reverse/step-reverse.exp: next test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: next test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next over call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse next test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step into fn call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step out of called fn
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse stepi from a function call
PASS -> FAIL: gdb.reverse/step-reverse.exp: simple reverse stepi
PASS -> FAIL: gdb.reverse/step-reverse.exp: simple stepi
PASS -> FAIL: gdb.reverse/step-reverse.exp: step test 1
PASS -> FAIL: gdb.reverse/step-reverse.exp: step test 2
PASS -> FAIL: gdb.reverse/step-reverse.exp: step up to call
PASS -> FAIL: gdb.reverse/step-reverse.exp: stepi back from function call
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tfind
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tracepoint with three locations
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tstop
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 1
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tstop
PASS -> FAIL: gdb.trace/ftrace-lock.exp: IPA loaded
PASS -> FAIL: gdb.trace/pending.exp: ftrace action_resolved: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace action_resolved: tdump
new FAIL: gdb.trace/pending.exp: ftrace action_resolved: tfind test frame
new FAIL: gdb.trace/pending.exp: ftrace action_resolved: tfind test frame 0
PASS -> FAIL: gdb.trace/pending.exp: ftrace resolved_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace resolved_in_trace: tfind test frame
new FAIL: gdb.trace/pending.exp: ftrace resolved_in_trace: tfind test frame 0
PASS -> FAIL: gdb.trace/pending.exp: ftrace works: start trace experiment
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 0
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 1
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 2
==============================================
*** 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/37/37ab86550b9da31d6c32c2d3384bd27f0426e935//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/37/37ab86550b9da31d6c32c2d3384bd27f0426e935//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 23:27 [binutils-gdb] Silence warnings about incompatible plugins gdb-buildbot
@ 2020-06-19 23:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 23:27 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/3114
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
13aa5ceb01cc94a0e617f397c0c5434fc22bb1e5
Subject of commit:
Silence warnings about incompatible plugins.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/13/13aa5ceb01cc94a0e617f397c0c5434fc22bb1e5/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/13/13aa5ceb01cc94a0e617f397c0c5434fc22bb1e5//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/13/13aa5ceb01cc94a0e617f397c0c5434fc22bb1e5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 22:13 [binutils-gdb] Decouple inferior_ptid/inferior_thread(); dup ptids in thread list (PR 25412) gdb-buildbot
@ 2020-06-19 22:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 22:32 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/3113
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
3922b302645fda04da42a5279399578ae2f6206c
Subject of commit:
Decouple inferior_ptid/inferior_thread(); dup ptids in thread list (PR 25412)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/39/3922b302645fda04da42a5279399578ae2f6206c/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: all brk instructions triggered
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 2
==============================================
*** 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/39/3922b302645fda04da42a5279399578ae2f6206c//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/39/3922b302645fda04da42a5279399578ae2f6206c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 21:37 [binutils-gdb] Don't write to inferior_ptid in aix-thread.c gdb-buildbot
@ 2020-06-19 21:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 21:37 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/3112
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
6dbdab44e57d21c895ef60246d0e7aadb3c076a4
Subject of commit:
Don't write to inferior_ptid in aix-thread.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6d/6dbdab44e57d21c895ef60246d0e7aadb3c076a4/
*** 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/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/Ubuntu-Aarch64-native-extended-gdbserver-m64/6d/6dbdab44e57d21c895ef60246d0e7aadb3c076a4//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/6d/6dbdab44e57d21c895ef60246d0e7aadb3c076a4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 19:47 [binutils-gdb] Don't write to inferior_ptid in windows-nat.c, part II gdb-buildbot
@ 2020-06-19 19:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 19:47 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/3110
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
50838d1be72ddd30e0b5f081933482424ae5a6b0
Subject of commit:
Don't write to inferior_ptid in windows-nat.c, part II
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/50/50838d1be72ddd30e0b5f081933482424ae5a6b0/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/50/50838d1be72ddd30e0b5f081933482424ae5a6b0//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/50/50838d1be72ddd30e0b5f081933482424ae5a6b0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 18:53 [binutils-gdb] Don't write to inferior_ptid in windows-nat.c, part I gdb-buildbot
@ 2020-06-19 18:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 18:53 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/3109
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
31ce04e9e0ce96e752e2c53dfad5881d24e9f080
Subject of commit:
Don't write to inferior_ptid in windows-nat.c, part I
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/31/31ce04e9e0ce96e752e2c53dfad5881d24e9f080/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/31/31ce04e9e0ce96e752e2c53dfad5881d24e9f080//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/31/31ce04e9e0ce96e752e2c53dfad5881d24e9f080//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 16:03 [binutils-gdb] Don't write to inferior_ptid in bsd-kvm.c gdb-buildbot
@ 2020-06-19 16:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 16:03 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/3106
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
5d971d48b922afc1cfe3ba1798477473cfbd052e
Subject of commit:
Don't write to inferior_ptid in bsd-kvm.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5d/5d971d48b922afc1cfe3ba1798477473cfbd052e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 1
==============================================
*** 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/5d/5d971d48b922afc1cfe3ba1798477473cfbd052e//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/5d/5d971d48b922afc1cfe3ba1798477473cfbd052e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 13:17 [binutils-gdb] Don't write to inferior_ptid in corelow.c gdb-buildbot
@ 2020-06-19 13:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 13:17 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/3103
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
60db1b8565060f4bd2287b060ea9724c93289982
Subject of commit:
Don't write to inferior_ptid in corelow.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/60/60db1b8565060f4bd2287b060ea9724c93289982/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: brk instruction 0 causes SIGTRAP
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/60/60db1b8565060f4bd2287b060ea9724c93289982//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/60/60db1b8565060f4bd2287b060ea9724c93289982//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 11:28 [binutils-gdb] Don't write to inferior_ptid in gnu-nat.c gdb-buildbot
@ 2020-06-19 11:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 11:28 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/3101
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
975f8708de015fb2b813edbf8b714f4777c57a41
Subject of commit:
Don't write to inferior_ptid in gnu-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/97/975f8708de015fb2b813edbf8b714f4777c57a41/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: all brk instructions triggered
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 2
==============================================
*** 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/97/975f8708de015fb2b813edbf8b714f4777c57a41//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/97/975f8708de015fb2b813edbf8b714f4777c57a41//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 9:39 [binutils-gdb] Don't write to inferior_ptid in nto-procfs.c gdb-buildbot
@ 2020-06-19 9:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 9:39 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/3099
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
ebe84f23d2f3c0cb145cc7b3acfb011a4c7df1c9
Subject of commit:
Don't write to inferior_ptid in nto-procfs.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/eb/ebe84f23d2f3c0cb145cc7b3acfb011a4c7df1c9/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 1
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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/eb/ebe84f23d2f3c0cb145cc7b3acfb011a4c7df1c9//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/eb/ebe84f23d2f3c0cb145cc7b3acfb011a4c7df1c9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 7:49 [binutils-gdb] Don't write to inferior_ptid in remote.c gdb-buildbot
@ 2020-06-19 7:49 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 7:49 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/3097
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
0ac553107c601cc9c4c340338e0fc7e0ce8375cc
Subject of commit:
Don't write to inferior_ptid in remote.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0a/0ac553107c601cc9c4c340338e0fc7e0ce8375cc/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/0a/0ac553107c601cc9c4c340338e0fc7e0ce8375cc//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/0a/0ac553107c601cc9c4c340338e0fc7e0ce8375cc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 6:54 [binutils-gdb] Don't write to inferior_ptid in tracectf.c gdb-buildbot
@ 2020-06-19 6:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 6:54 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/3096
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
5233f39b8b999f2675fb9493149e878c281e1d60
Subject of commit:
Don't write to inferior_ptid in tracectf.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/52/5233f39b8b999f2675fb9493149e878c281e1d60/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/52/5233f39b8b999f2675fb9493149e878c281e1d60//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/52/5233f39b8b999f2675fb9493149e878c281e1d60//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 5:59 [binutils-gdb] Don't write to inferior_ptid in tracefile-tfile.c gdb-buildbot
@ 2020-06-19 5:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 5:59 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/3095
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
087e161b3cd9a8626dc05ce1bdb8dfaf353a71b1
Subject of commit:
Don't write to inferior_ptid in tracefile-tfile.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/08/087e161b3cd9a8626dc05ce1bdb8dfaf353a71b1/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: all brk instructions triggered
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 0
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 1
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 2
==============================================
*** 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/08/087e161b3cd9a8626dc05ce1bdb8dfaf353a71b1//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/08/087e161b3cd9a8626dc05ce1bdb8dfaf353a71b1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 3:50 [binutils-gdb] Don't write to inferior_ptid in infrun.c gdb-buildbot
@ 2020-06-19 4:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 4:09 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/3093
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
18493a005acc8fbccbee4a2b767334eaaf636dd2
Subject of commit:
Don't write to inferior_ptid in infrun.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/18/18493a005acc8fbccbee4a2b767334eaaf636dd2/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=exit: fork: break grandparent_done
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=exit: fork: continue
PASS -> FAIL: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=exit: fork: continue to grandchild fork
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=exit: fork: kill child
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=exit: fork: switch to parent
PASS -> FAIL: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=kill: fork: continue to grandchild fork
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=kill: fork: kill child
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=kill: fork: kill parent
PASS -> UNRESOLVED: gdb.base/catch-fork-kill.exp: fork-kind=fork: exit-kind=kill: fork: switch to parent
PASS -> FAIL: gdb.base/foll-fork.exp: follow child, detach off, command "continue": continue past fork
PASS -> UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "continue": continue to breakpoint: continue unfollowed inferior to bp
PASS -> UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "continue": inferior 1
PASS -> UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "continue": info inferiors
PASS -> UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "next 2": continue until exit at continue unfollowed inferior to end
PASS -> UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "next 2": inferior 1
PASS -> UNRESOLVED: gdb.base/foll-fork.exp: follow child, detach off, command "next 2": info inferiors
PASS -> FAIL: gdb.base/foll-fork.exp: follow child, detach off, command "next 2": next 2 past fork
PASS -> FAIL: gdb.base/fork-print-inferior-events.exp: print_inferior_events=off: follow_fork_mode=child: detach_on_fork=off: run
PASS -> FAIL: gdb.base/fork-print-inferior-events.exp: print_inferior_events=on: follow_fork_mode=child: detach_on_fork=off: run
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: break marker
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: continue to end, first time
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: continue to end, second time
PASS -> FAIL: gdb.base/step-over-exit.exp: continue to exit
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: continue to marker, first time
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: continue to marker, second time
new UNRESOLVED: gdb.base/step-over-exit.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: delete display 1
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: display/i $pc
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: find syscall insn in exit
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: get hexadecimal valueof "$pc"
new UNRESOLVED: gdb.base/step-over-exit.exp: set breakpoint condition-evaluation target
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: set conditional break at syscall address
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: switch back to inferior 1, first time
PASS -> UNRESOLVED: gdb.base/step-over-exit.exp: switch back to inferior 1, second time
PASS -> UNRESOLVED: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: break marker
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: continue to end of inf 2
PASS -> UNRESOLVED: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: continue to marker
PASS -> UNRESOLVED: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: inferior 1
new UNRESOLVED: gdb.multi/watchpoint-multi-exit.exp: dispose=detach: can't run to child_function
new UNRESOLVED: gdb.multi/watchpoint-multi-exit.exp: dispose=exit: can't run to child_function
new UNRESOLVED: gdb.multi/watchpoint-multi-exit.exp: dispose=kill: can't run to child_function
PASS -> UNRESOLVED: gdb.server/extended-remote-restart.exp: kill: 0, follow-child 1: Check inferiors at breakpoint
PASS -> FAIL: gdb.server/extended-remote-restart.exp: kill: 0, follow-child 1: continue to breakpoint: breakpt
PASS -> UNRESOLVED: gdb.server/extended-remote-restart.exp: kill: 0, follow-child 1: disconnect
PASS -> UNRESOLVED: gdb.server/extended-remote-restart.exp: kill: 0, follow-child 1: reconnect after fork
PASS -> UNRESOLVED: gdb.server/extended-remote-restart.exp: kill: 1, follow-child 1: Check inferior was killed
PASS -> UNRESOLVED: gdb.server/extended-remote-restart.exp: kill: 1, follow-child 1: Check inferiors at breakpoint
PASS -> UNRESOLVED: gdb.server/extended-remote-restart.exp: kill: 1, follow-child 1: Kill inferior
PASS -> FAIL: gdb.server/extended-remote-restart.exp: kill: 1, follow-child 1: continue to breakpoint: breakpt
PASS -> UNRESOLVED: gdb.server/extended-remote-restart.exp: kill: 1, follow-child 1: disconnect
PASS -> UNRESOLVED: gdb.server/extended-remote-restart.exp: kill: 1, follow-child 1: reconnect after fork
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: continue
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: continue to breakpoint: _exit
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: detach child
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: switch to parent
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: continue to breakpoint: _exit
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: get integer valueof "mypid"
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue to breakpoint: child_function
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: detach child
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: setting breakpoint at _exit
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: switch to parent
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: watch globalvar
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: continue to breakpoint: _exit
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: get integer valueof "mypid"
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: continue to breakpoint: child_function
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach child
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach parent
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: setting breakpoint at _exit
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: switch to parent
PASS -> UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: watch globalvar
==============================================
*** 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/18/18493a005acc8fbccbee4a2b767334eaaf636dd2//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/18/18493a005acc8fbccbee4a2b767334eaaf636dd2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 3:14 [binutils-gdb] Don't write to inferior_ptid in target.c gdb-buildbot
@ 2020-06-19 3:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 3:14 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/3092
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
a0776b131d7a154125fdc4d22b1dda967c790ae9
Subject of commit:
Don't write to inferior_ptid in target.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a0/a0776b131d7a154125fdc4d22b1dda967c790ae9/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: all brk instructions triggered
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 1
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 2
==============================================
*** 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/a0/a0776b131d7a154125fdc4d22b1dda967c790ae9//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/a0/a0776b131d7a154125fdc4d22b1dda967c790ae9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 2:19 [binutils-gdb] Don't write to inferior_ptid in inf-ptrace.c gdb-buildbot
@ 2020-06-19 2:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 2:19 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/3091
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
6155c136ccf04b1e4ae1bdc201b853ce899b8607
Subject of commit:
Don't write to inferior_ptid in inf-ptrace.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/61/6155c136ccf04b1e4ae1bdc201b853ce899b8607/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/61/6155c136ccf04b1e4ae1bdc201b853ce899b8607//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/61/6155c136ccf04b1e4ae1bdc201b853ce899b8607//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-19 0:29 [binutils-gdb] gcore, handle exited threads better gdb-buildbot
@ 2020-06-19 0:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-19 0:30 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/3089
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
8df017996f662ce6ab23aea4abeb8f7ac1f62651
Subject of commit:
gcore, handle exited threads better
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8d/8df017996f662ce6ab23aea4abeb8f7ac1f62651/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: all brk instructions triggered
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 2
==============================================
*** 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/8d/8df017996f662ce6ab23aea4abeb8f7ac1f62651//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/8d/8df017996f662ce6ab23aea4abeb8f7ac1f62651//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-18 23:11 [binutils-gdb] Don't write to inferior_ptid in linux_get_siginfo_data gdb-buildbot
@ 2020-06-18 23:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-18 23: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/3088
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
41792d688a5a1f158d6e9ecda2b603ae122d69a1
Subject of commit:
Don't write to inferior_ptid in linux_get_siginfo_data
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/41/41792d688a5a1f158d6e9ecda2b603ae122d69a1/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/41/41792d688a5a1f158d6e9ecda2b603ae122d69a1//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/41/41792d688a5a1f158d6e9ecda2b603ae122d69a1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-18 13:48 [binutils-gdb] [gdb/testsuite] Move code from gdb_init to default_gdb_init gdb-buildbot
@ 2020-06-18 13:48 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-18 13:48 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/3087
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
a8a566853a0fc7f57159e55436ff6f395e499568
Subject of commit:
[gdb/testsuite] Move code from gdb_init to default_gdb_init
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a8a566853a0fc7f57159e55436ff6f395e499568/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: all brk instructions triggered
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 0
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 1
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a8a566853a0fc7f57159e55436ff6f395e499568//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/a8/a8a566853a0fc7f57159e55436ff6f395e499568//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-18 5:41 [binutils-gdb] Fix TUI support checks in gdb.tui tests gdb-buildbot
@ 2020-06-18 5:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-18 5:41 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/3085
Author:
Sandra Loosemore <sandra@codesourcery.com>
Commit tested:
581bea2c99751391fc49d104d5eacb85bfb63c96
Subject of commit:
Fix TUI support checks in gdb.tui tests.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/58/581bea2c99751391fc49d104d5eacb85bfb63c96/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/58/581bea2c99751391fc49d104d5eacb85bfb63c96//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/58/581bea2c99751391fc49d104d5eacb85bfb63c96//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-18 2:49 [binutils-gdb] Remove unnecessary TUI declarations gdb-buildbot
@ 2020-06-18 2:49 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-18 2:49 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/3084
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
612f258a491539f36c618030cc558e83e7d58b4e
Subject of commit:
Remove unnecessary TUI declarations
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/61/612f258a491539f36c618030cc558e83e7d58b4e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/61/612f258a491539f36c618030cc558e83e7d58b4e//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/61/612f258a491539f36c618030cc558e83e7d58b4e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-18 0:13 [binutils-gdb] gdb: check for partial symtab presence in dwarf2_initialize_objfile gdb-buildbot
@ 2020-06-18 0:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-18 0:13 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/3082
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
efb763a5ea351f9d865cbe491909f03472ebf2d6
Subject of commit:
gdb: check for partial symtab presence in dwarf2_initialize_objfile
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/efb763a5ea351f9d865cbe491909f03472ebf2d6/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/efb763a5ea351f9d865cbe491909f03472ebf2d6//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/ef/efb763a5ea351f9d865cbe491909f03472ebf2d6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-17 21:27 [binutils-gdb] gdb/features: remove rx.xml from XMLTOC list gdb-buildbot
@ 2020-06-17 21:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-17 21:27 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/3079
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
3af96c0d99dedab49d2b82b730c74c27ce99bba4
Subject of commit:
gdb/features: remove rx.xml from XMLTOC list
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3a/3af96c0d99dedab49d2b82b730c74c27ce99bba4/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/3a/3af96c0d99dedab49d2b82b730c74c27ce99bba4//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/3a/3af96c0d99dedab49d2b82b730c74c27ce99bba4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-17 20:28 [binutils-gdb] Pass INTERNAL_GDBFLAGS when executing GDB gdb-buildbot
@ 2020-06-17 20:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-17 20:28 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/3078
Author:
Keith Seitz <keiths@redhat.com>
Commit tested:
43327b208ec6452c1a6accd40be965cdfa5c86a3
Subject of commit:
Pass INTERNAL_GDBFLAGS when executing GDB
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/43/43327b208ec6452c1a6accd40be965cdfa5c86a3/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/43/43327b208ec6452c1a6accd40be965cdfa5c86a3//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/43/43327b208ec6452c1a6accd40be965cdfa5c86a3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-17 18:09 [binutils-gdb] [gdb/testsuite] Remove dependence on tcl_unknown gdb-buildbot
@ 2020-06-17 18:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-17 18:28 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/3076
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
081e778cb855581fe63a9b26aa582900da5d1a8b
Subject of commit:
[gdb/testsuite] Remove dependence on tcl_unknown
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/08/081e778cb855581fe63a9b26aa582900da5d1a8b/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/08/081e778cb855581fe63a9b26aa582900da5d1a8b//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/08/081e778cb855581fe63a9b26aa582900da5d1a8b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-17 17:29 [binutils-gdb] Update thread_control_state::trap_expected comments gdb-buildbot
@ 2020-06-17 17:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-17 17:29 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/3075
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
b25e22fd1698b600310fc56f01b6005b5a3f6227
Subject of commit:
Update thread_control_state::trap_expected comments
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b2/b25e22fd1698b600310fc56f01b6005b5a3f6227/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b2/b25e22fd1698b600310fc56f01b6005b5a3f6227//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/b2/b25e22fd1698b600310fc56f01b6005b5a3f6227//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-17 16:34 [binutils-gdb] gdb: Convert language la_lookup_symbol_nonlocal field to a method gdb-buildbot
@ 2020-06-17 16:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-17 16:34 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/3074
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
a78a19b15254de31c3d38b7e27469aaef0a30e97
Subject of commit:
gdb: Convert language la_lookup_symbol_nonlocal field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a7/a78a19b15254de31c3d38b7e27469aaef0a30e97/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.trace/pending.exp: ftrace resolved: single tracepoint info
==============================================
*** 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/a7/a78a19b15254de31c3d38b7e27469aaef0a30e97//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/a7/a78a19b15254de31c3d38b7e27469aaef0a30e97//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-17 15:40 [binutils-gdb] gdb: Convert language la_value_print_inner field to a method gdb-buildbot
@ 2020-06-17 15:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-17 15:40 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/3073
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
ebe2334ee6cb065d2a86688bc9558d62320dd459
Subject of commit:
gdb: Convert language la_value_print_inner field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/eb/ebe2334ee6cb065d2a86688bc9558d62320dd459/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/eb/ebe2334ee6cb065d2a86688bc9558d62320dd459//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/eb/ebe2334ee6cb065d2a86688bc9558d62320dd459//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-17 13:46 [binutils-gdb] gdb: Convert language la_watch_location_expression field to a method gdb-buildbot
@ 2020-06-17 13:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-17 13:46 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/3071
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
f16a9f57b50af64ccb9652d20cc934fc5e80cd20
Subject of commit:
gdb: Convert language la_watch_location_expression field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f1/f16a9f57b50af64ccb9652d20cc934fc5e80cd20/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f1/f16a9f57b50af64ccb9652d20cc934fc5e80cd20//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/f1/f16a9f57b50af64ccb9652d20cc934fc5e80cd20//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-17 11:00 [binutils-gdb] gdb: Convert language la_get_symbol_name_matcher field to a method gdb-buildbot
@ 2020-06-17 11:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-17 11:00 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/3068
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
c9debfb97e052c32cf0308157cae529ce2059f48
Subject of commit:
gdb: Convert language la_get_symbol_name_matcher field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c9/c9debfb97e052c32cf0308157cae529ce2059f48/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 1
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c9/c9debfb97e052c32cf0308157cae529ce2059f48//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/c9/c9debfb97e052c32cf0308157cae529ce2059f48//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-17 9:11 [binutils-gdb] gdb: Convert language la_class_name_from_physname field to a method gdb-buildbot
@ 2020-06-17 9:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-17 9:11 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/3066
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
eff93b4d48eb0e79b7879475bb47eec55dbb41be
Subject of commit:
gdb: Convert language la_class_name_from_physname field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/eff93b4d48eb0e79b7879475bb47eec55dbb41be/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/eff93b4d48eb0e79b7879475bb47eec55dbb41be//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/ef/eff93b4d48eb0e79b7879475bb47eec55dbb41be//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-17 0:38 [binutils-gdb] Fix crash when TUI window creation fails gdb-buildbot
@ 2020-06-17 0:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-17 0:38 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/3062
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
d2d1ea20aef6ed97232280b5e15a52b8d7dc7b7d
Subject of commit:
Fix crash when TUI window creation fails
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d2/d2d1ea20aef6ed97232280b5e15a52b8d7dc7b7d/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/d2/d2d1ea20aef6ed97232280b5e15a52b8d7dc7b7d//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/d2/d2d1ea20aef6ed97232280b5e15a52b8d7dc7b7d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-16 12:22 [binutils-gdb] Add two missing return values in gdb.python/py-nested-maps.c gdb-buildbot
@ 2020-06-16 12:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-16 12:22 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/3060
Author:
Gary Benson <gbenson@redhat.com>
Commit tested:
c802e8a76c4eaa3a8a62d7dcfe7be98bf718a2f0
Subject of commit:
Add two missing return values in gdb.python/py-nested-maps.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c8/c802e8a76c4eaa3a8a62d7dcfe7be98bf718a2f0/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: brk instruction 1 causes SIGTRAP
==============================================
*** 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/c8/c802e8a76c4eaa3a8a62d7dcfe7be98bf718a2f0//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/c8/c802e8a76c4eaa3a8a62d7dcfe7be98bf718a2f0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-16 7:10 [binutils-gdb] Really remove tic30-aout support gdb-buildbot
@ 2020-06-16 7:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-16 7:10 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/3059
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
a435742a7fb32f6320ce0e6074e2500e28378104
Subject of commit:
Really remove tic30-aout support
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a4/a435742a7fb32f6320ce0e6074e2500e28378104/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a4/a435742a7fb32f6320ce0e6074e2500e28378104//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/a4/a435742a7fb32f6320ce0e6074e2500e28378104//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-15 20:44 [binutils-gdb] xtensa: allow runtime ABI selection gdb-buildbot
@ 2020-06-15 20:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-15 20:44 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/3058
Author:
Max Filippov <jcmvbkbc@gmail.com>
Commit tested:
7a77f1ac2c6f899faa39e8c0b42d4284d586c44e
Subject of commit:
xtensa: allow runtime ABI selection
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7a/7a77f1ac2c6f899faa39e8c0b42d4284d586c44e/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/7a/7a77f1ac2c6f899faa39e8c0b42d4284d586c44e//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/7a/7a77f1ac2c6f899faa39e8c0b42d4284d586c44e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-15 19:30 [binutils-gdb] gold, ld: Implement -z start-stop-visibility=... option gdb-buildbot
@ 2020-06-15 19:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-15 19:30 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/3057
Author:
Roland McGrath <mcgrathr@google.com>
Commit tested:
cae64165f47b64898c4f1982d294862cfae89a47
Subject of commit:
gold, ld: Implement -z start-stop-visibility=... option.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ca/cae64165f47b64898c4f1982d294862cfae89a47/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 0
==============================================
*** 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/ca/cae64165f47b64898c4f1982d294862cfae89a47//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/ca/cae64165f47b64898c4f1982d294862cfae89a47//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-15 15:05 [binutils-gdb] Remove a use of target_read_string gdb-buildbot
@ 2020-06-15 15:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-15 15:05 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/3055
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
a5d871ddaf2aa8462922ed25b0c0dc7f02128cb9
Subject of commit:
Remove a use of target_read_string
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a5/a5d871ddaf2aa8462922ed25b0c0dc7f02128cb9/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a5/a5d871ddaf2aa8462922ed25b0c0dc7f02128cb9//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/a5/a5d871ddaf2aa8462922ed25b0c0dc7f02128cb9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-15 13:14 [binutils-gdb] Remove read_memory_string gdb-buildbot
@ 2020-06-15 13:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-15 13:14 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/3053
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
f5272a3bb3928e8e45a122c19aa72a00a23a9d4d
Subject of commit:
Remove read_memory_string
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f5/f5272a3bb3928e8e45a122c19aa72a00a23a9d4d/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 1
==============================================
*** 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/f5/f5272a3bb3928e8e45a122c19aa72a00a23a9d4d//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/f5/f5272a3bb3928e8e45a122c19aa72a00a23a9d4d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-15 6:22 [binutils-gdb] Obsolete PowerPC PE, winnt and cygwin targets gdb-buildbot
@ 2020-06-15 6:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-15 6:22 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/3051
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
40be168cc419152df5cfae01caae415f52ffb4de
Subject of commit:
Obsolete PowerPC PE, winnt and cygwin targets
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/40/40be168cc419152df5cfae01caae415f52ffb4de/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: all brk instructions triggered
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 0
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/40/40be168cc419152df5cfae01caae415f52ffb4de//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/40/40be168cc419152df5cfae01caae415f52ffb4de//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-14 16:01 [binutils-gdb] Handle Windows drives in rbreak paths gdb-buildbot
@ 2020-06-14 16:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-14 16:20 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/3049
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
2c074f49026acbe0597e0d2d2f7385195dcac565
Subject of commit:
Handle Windows drives in rbreak paths
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2c/2c074f49026acbe0597e0d2d2f7385195dcac565/
*** 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=on: cond_bp_target=0: inferior 1 exited
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2c/2c074f49026acbe0597e0d2d2f7385195dcac565//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/2c/2c074f49026acbe0597e0d2d2f7385195dcac565//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-14 12:51 [binutils-gdb] x86: Correct xsusldtrk mnemonic gdb-buildbot
@ 2020-06-14 13:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-14 13:10 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/3048
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
efe30057d2fcf875e39efbe6cc2a6271decbbd2e
Subject of commit:
x86: Correct xsusldtrk mnemonic
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/efe30057d2fcf875e39efbe6cc2a6271decbbd2e/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: all brk instructions triggered
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 0
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 2
==============================================
*** 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/ef/efe30057d2fcf875e39efbe6cc2a6271decbbd2e//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/ef/efe30057d2fcf875e39efbe6cc2a6271decbbd2e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-13 4:15 [binutils-gdb] gdb: mention removed GDBserver host support in NEWS gdb-buildbot
@ 2020-06-13 4:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-13 4:15 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/3046
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
6a17d503c45b69dbf92c4c2a1aa2148db458c6b1
Subject of commit:
gdb: mention removed GDBserver host support in NEWS
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6a/6a17d503c45b69dbf92c4c2a1aa2148db458c6b1/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 1
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/6a/6a17d503c45b69dbf92c4c2a1aa2148db458c6b1//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/6a/6a17d503c45b69dbf92c4c2a1aa2148db458c6b1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-13 2:25 [binutils-gdb] gdbserver: remove support for Tile gdb-buildbot
@ 2020-06-13 2:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-13 2:25 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/3044
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
96c16e2b7f47c301912ac92f53b756e26ef44ffb
Subject of commit:
gdbserver: remove support for Tile
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/96/96c16e2b7f47c301912ac92f53b756e26ef44ffb/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/96/96c16e2b7f47c301912ac92f53b756e26ef44ffb//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/96/96c16e2b7f47c301912ac92f53b756e26ef44ffb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-13 0:15 [binutils-gdb] gdbserver: remove support for CRIS gdb-buildbot
@ 2020-06-13 0:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-13 0:34 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/3042
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
7b46bf6f83c444ac84b3b88ebd89a8dae0de2f37
Subject of commit:
gdbserver: remove support for CRIS
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7b/7b46bf6f83c444ac84b3b88ebd89a8dae0de2f37/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: all brk instructions triggered
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 0
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 1
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/7b/7b46bf6f83c444ac84b3b88ebd89a8dae0de2f37//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/7b/7b46bf6f83c444ac84b3b88ebd89a8dae0de2f37//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-12 22:44 [binutils-gdb] gdbserver: remove support for Neutrino gdb-buildbot
@ 2020-06-12 22:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-12 22:44 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/3040
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
613f149a90d6fc32a5a6ff47e0325f762cb07424
Subject of commit:
gdbserver: remove support for Neutrino
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/61/613f149a90d6fc32a5a6ff47e0325f762cb07424/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/61/613f149a90d6fc32a5a6ff47e0325f762cb07424//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/61/613f149a90d6fc32a5a6ff47e0325f762cb07424//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-12 21:48 [binutils-gdb] gdbserver: remove support for LynxOS gdb-buildbot
@ 2020-06-12 21:48 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-12 21:48 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/3039
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
fdb95bf546c7ea42fc61bed73bacd04ef237aa1a
Subject of commit:
gdbserver: remove support for LynxOS
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fd/fdb95bf546c7ea42fc61bed73bacd04ef237aa1a/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: all brk instructions triggered
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 2
==============================================
*** 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/fd/fdb95bf546c7ea42fc61bed73bacd04ef237aa1a//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/fd/fdb95bf546c7ea42fc61bed73bacd04ef237aa1a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-12 20:32 [binutils-gdb] gdbserver: small cleanup of README file gdb-buildbot
@ 2020-06-12 20:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-12 20:52 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/3038
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
c00094dc7ac4a527ff23b15adc96b4750d8365d7
Subject of commit:
gdbserver: small cleanup of README file
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c0/c00094dc7ac4a527ff23b15adc96b4750d8365d7/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: brk instruction 2 causes SIGTRAP
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 0
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 1
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c0/c00094dc7ac4a527ff23b15adc96b4750d8365d7//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/c0/c00094dc7ac4a527ff23b15adc96b4750d8365d7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-12 17:19 [binutils-gdb] [gdbserver] Fix Wlto-type-mismatch for debug_agent gdb-buildbot
@ 2020-06-12 17:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-12 17:19 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/3037
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
8118159c69a957292ce701b3d2937f19a0d0f973
Subject of commit:
[gdbserver] Fix Wlto-type-mismatch for debug_agent
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/81/8118159c69a957292ce701b3d2937f19a0d0f973/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/81/8118159c69a957292ce701b3d2937f19a0d0f973//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/81/8118159c69a957292ce701b3d2937f19a0d0f973//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-12 13:51 [binutils-gdb] gdb/testsuite: Prevent globals leaking between test scripts gdb-buildbot
@ 2020-06-12 13:51 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-12 13:51 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/3036
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
a29d5112814e7a6744f03bddfe6756e2aa5e7a50
Subject of commit:
gdb/testsuite: Prevent globals leaking between test scripts
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a2/a29d5112814e7a6744f03bddfe6756e2aa5e7a50/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 0
==============================================
*** 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/a2/a29d5112814e7a6744f03bddfe6756e2aa5e7a50//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/a2/a29d5112814e7a6744f03bddfe6756e2aa5e7a50//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-12 12:11 [binutils-gdb] [gdb/testsuite] Don't leak tuiterm.exp spawn override gdb-buildbot
@ 2020-06-12 12:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-12 12:11 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/3035
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
8c74a764f2cf5ea5e6997e35ba0f755fe2c09889
Subject of commit:
[gdb/testsuite] Don't leak tuiterm.exp spawn override
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8c/8c74a764f2cf5ea5e6997e35ba0f755fe2c09889/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: brk instruction 2 causes SIGTRAP
==============================================
*** 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/8c/8c74a764f2cf5ea5e6997e35ba0f755fe2c09889//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/8c/8c74a764f2cf5ea5e6997e35ba0f755fe2c09889//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-12 7:55 [binutils-gdb] [gdb/testsuite] Don't abort testrun for invalid command in test-case gdb-buildbot
@ 2020-06-12 7:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-12 7:55 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/3034
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
26783bce15adc0316f9167a216519cebcf1ccac3
Subject of commit:
[gdb/testsuite] Don't abort testrun for invalid command in test-case
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/26/26783bce15adc0316f9167a216519cebcf1ccac3/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: all brk instructions triggered
new UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: brk instruction 0 causes SIGTRAP
new UNRESOLVED: gdb.arch/aarch64-brk-patterns.exp: brk instruction 1 causes SIGTRAP
new FAIL: gdb.arch/aarch64-brk-patterns.exp: insert breakpoint at brk instruction 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/26/26783bce15adc0316f9167a216519cebcf1ccac3//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/26/26783bce15adc0316f9167a216519cebcf1ccac3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-11 17:19 [binutils-gdb] Fix hex floating point lexing gdb-buildbot
@ 2020-06-11 17:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-11 17:19 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/3031
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
2b4e6a3f4b66284556254f548716c7b21b93524a
Subject of commit:
Fix hex floating point lexing
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2b/2b4e6a3f4b66284556254f548716c7b21b93524a/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2b/2b4e6a3f4b66284556254f548716c7b21b93524a//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/2b/2b4e6a3f4b66284556254f548716c7b21b93524a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-11 14:10 [binutils-gdb] Compute proper length for dynamic types of TYPE_CODE_TYPEDEF gdb-buildbot
@ 2020-06-11 14:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-11 14:10 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/3029
Author:
Keith Seitz <keiths@redhat.com>
Commit tested:
2f33032a93f24ccc0c0d2f23e2a3ec0442f638d4
Subject of commit:
Compute proper length for dynamic types of TYPE_CODE_TYPEDEF
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2f/2f33032a93f24ccc0c0d2f23e2a3ec0442f638d4/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2f/2f33032a93f24ccc0c0d2f23e2a3ec0442f638d4//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/2f/2f33032a93f24ccc0c0d2f23e2a3ec0442f638d4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-11 13:16 [binutils-gdb] [gdb/testsuite] Make gdb.base/dbx.exp more robust gdb-buildbot
@ 2020-06-11 13:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-11 13:16 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/3028
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
a8baf0a32b8f8fe151762c6c0136fef4bae2facd
Subject of commit:
[gdb/testsuite] Make gdb.base/dbx.exp more robust
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a8baf0a32b8f8fe151762c6c0136fef4bae2facd/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a8baf0a32b8f8fe151762c6c0136fef4bae2facd//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/a8/a8baf0a32b8f8fe151762c6c0136fef4bae2facd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-11 5:27 [binutils-gdb] asan: readelf: process_mips_specific buffer overflow gdb-buildbot
@ 2020-06-11 5:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-11 5:27 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/3025
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
d0c4e7802dae311d71059d0e2114150a5e09acf1
Subject of commit:
asan: readelf: process_mips_specific buffer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d0/d0c4e7802dae311d71059d0e2114150a5e09acf1/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/d0/d0c4e7802dae311d71059d0e2114150a5e09acf1//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/d0/d0c4e7802dae311d71059d0e2114150a5e09acf1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-11 2:14 [binutils-gdb] ia64: Set DF_TEXTREL instead of reltext gdb-buildbot
@ 2020-06-11 2:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-11 2:14 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/3024
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
447f6d86275aa5790109c2dfd85f3a11919fff8f
Subject of commit:
ia64: Set DF_TEXTREL instead of reltext
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/447f6d86275aa5790109c2dfd85f3a11919fff8f/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/447f6d86275aa5790109c2dfd85f3a11919fff8f//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/44/447f6d86275aa5790109c2dfd85f3a11919fff8f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-10 15:07 [binutils-gdb] [gdb/symtab] Enable ada .gdb_index gdb-buildbot
@ 2020-06-10 15:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-10 15:07 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/3023
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
7ab967941150b2f79fc089893bf51e6bb53d245b
Subject of commit:
[gdb/symtab] Enable ada .gdb_index
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7a/7ab967941150b2f79fc089893bf51e6bb53d245b/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/status-stop.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/status-stop.exp: delete all breakpoints in delete_breakpoints
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
==============================================
*** 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/7a/7ab967941150b2f79fc089893bf51e6bb53d245b//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/7a/7ab967941150b2f79fc089893bf51e6bb53d245b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-10 14:12 [binutils-gdb] [gdb/symtab] Fix name lookup in dw2_map_matching_symbols gdb-buildbot
@ 2020-06-10 14:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-10 14:12 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/3022
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
e5f3ece2ab3b14677c87d9694d822c9ee01b36fe
Subject of commit:
[gdb/symtab] Fix name lookup in dw2_map_matching_symbols
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e5/e5f3ece2ab3b14677c87d9694d822c9ee01b36fe/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e5/e5f3ece2ab3b14677c87d9694d822c9ee01b36fe//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/e5/e5f3ece2ab3b14677c87d9694d822c9ee01b36fe//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-10 13:17 [binutils-gdb] ELF: Properly handle section symbols gdb-buildbot
@ 2020-06-10 13:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-10 13:17 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/3021
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
e1b5d517d1c293a64df311d2749bbbbfbe035a4c
Subject of commit:
ELF: Properly handle section symbols
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e1/e1b5d517d1c293a64df311d2749bbbbfbe035a4c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: check_pc_after_cross_syscall: single step over fork final pc
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-extended-gdbserver-m64/e1/e1b5d517d1c293a64df311d2749bbbbfbe035a4c//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/e1/e1b5d517d1c293a64df311d2749bbbbfbe035a4c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-09 13:53 [binutils-gdb] i386-dis.c: Fix a typo in comments gdb-buildbot
@ 2020-06-09 14:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-09 14:12 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/3018
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
f9630fa654d3421698bccd95a68712af0c86a081
Subject of commit:
i386-dis.c: Fix a typo in comments
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f9/f9630fa654d3421698bccd95a68712af0c86a081/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f9/f9630fa654d3421698bccd95a68712af0c86a081//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/f9/f9630fa654d3421698bccd95a68712af0c86a081//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-09 9:34 [binutils-gdb] x86: utilize X macro in EVEX decoding gdb-buildbot
@ 2020-06-09 9:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-09 9:34 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/3015
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
97e6786a6e354de573a1ec8c5021addf0066417a
Subject of commit:
x86: utilize X macro in EVEX decoding
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/97/97e6786a6e354de573a1ec8c5021addf0066417a/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/97/97e6786a6e354de573a1ec8c5021addf0066417a//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/97/97e6786a6e354de573a1ec8c5021addf0066417a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-09 7:44 [binutils-gdb] x86: correct mis-named MOD_0F51 enumerator gdb-buildbot
@ 2020-06-09 7:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-09 7:44 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/3013
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
a5aaedb9dba2775d855fa394246ede08e9f36652
Subject of commit:
x86: correct mis-named MOD_0F51 enumerator
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a5/a5aaedb9dba2775d855fa394246ede08e9f36652/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: 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-extended-gdbserver-m64/a5/a5aaedb9dba2775d855fa394246ede08e9f36652//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/a5/a5aaedb9dba2775d855fa394246ede08e9f36652//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-09 1:29 [binutils-gdb] PowerPC64: Downgrade ifunc with textrel error to a warning gdb-buildbot
@ 2020-06-09 1:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-09 1:29 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/3012
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
efb2a7b412c2c78eaf6d3b63f153a749fcde292c
Subject of commit:
PowerPC64: Downgrade ifunc with textrel error to a warning
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/efb2a7b412c2c78eaf6d3b63f153a749fcde292c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/ef/efb2a7b412c2c78eaf6d3b63f153a749fcde292c//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/ef/efb2a7b412c2c78eaf6d3b63f153a749fcde292c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-08 23:05 [binutils-gdb] gdb: remove FIELD_TYPE macro gdb-buildbot
@ 2020-06-08 23:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-08 23:24 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/3010
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
b6cdac4b80c1d32726227305e16483cef9d40e2c
Subject of commit:
gdb: remove FIELD_TYPE macro
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b6/b6cdac4b80c1d32726227305e16483cef9d40e2c/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b6/b6cdac4b80c1d32726227305e16483cef9d40e2c//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/b6/b6cdac4b80c1d32726227305e16483cef9d40e2c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-08 21:34 [binutils-gdb] gdb: remove TYPE_INDEX_TYPE macro gdb-buildbot
@ 2020-06-08 21:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-08 21:34 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/3008
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
3d967001ecd3b325fc39d7f53ebf7054d1ecd503
Subject of commit:
gdb: remove TYPE_INDEX_TYPE macro
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3d/3d967001ecd3b325fc39d7f53ebf7054d1ecd503/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/3d/3d967001ecd3b325fc39d7f53ebf7054d1ecd503//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/3d/3d967001ecd3b325fc39d7f53ebf7054d1ecd503//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-08 20:39 [binutils-gdb] gdb: add type::index_type / type::set_index_type gdb-buildbot
@ 2020-06-08 20:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-08 20:39 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/3007
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
262abc0d67af006a709d0935940f9c9f5f7c5ee5
Subject of commit:
gdb: add type::index_type / type::set_index_type
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/26/262abc0d67af006a709d0935940f9c9f5f7c5ee5/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
==============================================
*** 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/26/262abc0d67af006a709d0935940f9c9f5f7c5ee5//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/26/262abc0d67af006a709d0935940f9c9f5f7c5ee5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-08 15:56 [binutils-gdb] [PATCH] arm: Add DFB instruction for ARMv8-R gdb-buildbot
@ 2020-06-08 15:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-08 15:56 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/3006
Author:
Alex Coplan <alex.coplan@arm.com>
Commit tested:
26417f19193444a1516c945492c5eb47dc38abe9
Subject of commit:
[PATCH] arm: Add DFB instruction for ARMv8-R
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/26/26417f19193444a1516c945492c5eb47dc38abe9/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.trace/pending.exp: ftrace works: breakpoint function
PASS -> FAIL: gdb.trace/pending.exp: ftrace works: breakpoint on marker
new FAIL: gdb.trace/pending.exp: ftrace works: continue to marker
PASS -> UNRESOLVED: gdb.trace/pending.exp: ftrace works: set pending tracepoint
PASS -> FAIL: gdb.trace/pending.exp: ftrace works: single pending tracepoint info
PASS -> FAIL: gdb.trace/pending.exp: ftrace works: start trace experiment
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 0
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 1
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 2
==============================================
*** 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/26/26417f19193444a1516c945492c5eb47dc38abe9//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/26/26417f19193444a1516c945492c5eb47dc38abe9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-07 17:04 [binutils-gdb] elf64-hppa: Replace plt_sec/plt_rel_sec with root.splt/root.srelplt gdb-buildbot
@ 2020-06-07 17:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-07 17:23 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/3002
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
9b8a8575b43157a55a815814e15349ddb0865165
Subject of commit:
elf64-hppa: Replace plt_sec/plt_rel_sec with root.splt/root.srelplt
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9b/9b8a8575b43157a55a815814e15349ddb0865165/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: 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-extended-gdbserver-m64/9b/9b8a8575b43157a55a815814e15349ddb0865165//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/9b/9b8a8575b43157a55a815814e15349ddb0865165//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-06 14:12 [binutils-gdb] ELF: Add target_os to elf_link_hash_table/elf_backend_data gdb-buildbot
@ 2020-06-06 14:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-06 14:30 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/2998
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
90c14f0c3ac0252be955990e0ae120faedfb7b59
Subject of commit:
ELF: Add target_os to elf_link_hash_table/elf_backend_data
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/90/90c14f0c3ac0252be955990e0ae120faedfb7b59/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/90/90c14f0c3ac0252be955990e0ae120faedfb7b59//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/90/90c14f0c3ac0252be955990e0ae120faedfb7b59//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-06 5:59 [binutils-gdb] Rename PowerPC64 pcrel GOT TLS relocations gdb-buildbot
@ 2020-06-06 5:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-06 5:59 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/2996
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
87c69f9732039d889f04ae8b9bb81b80e530a6f1
Subject of commit:
Rename PowerPC64 pcrel GOT TLS relocations
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/87/87c69f9732039d889f04ae8b9bb81b80e530a6f1/
*** 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
==============================================
*** 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/87/87c69f9732039d889f04ae8b9bb81b80e530a6f1//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/87/87c69f9732039d889f04ae8b9bb81b80e530a6f1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-05 18:46 [binutils-gdb] gdb/python: Avoid use after free in py-tui.c gdb-buildbot
@ 2020-06-05 19:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-05 19:05 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/2994
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
982a38f60b0ece9385556cff45567e06710478cb
Subject of commit:
gdb/python: Avoid use after free in py-tui.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/98/982a38f60b0ece9385556cff45567e06710478cb/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/98/982a38f60b0ece9385556cff45567e06710478cb//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/98/982a38f60b0ece9385556cff45567e06710478cb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-05 16:53 [binutils-gdb] bfin: Initialize picrel to silence GCC warning gdb-buildbot
@ 2020-06-05 16:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-05 16:53 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/2991
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
8a4ba3a14258bb522f7dadf07d92faae99e59301
Subject of commit:
bfin: Initialize picrel to silence GCC warning
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8a/8a4ba3a14258bb522f7dadf07d92faae99e59301/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/8a/8a4ba3a14258bb522f7dadf07d92faae99e59301//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/8a/8a4ba3a14258bb522f7dadf07d92faae99e59301//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-05 15:58 [binutils-gdb] bfin: Skip non SEC_ALLOC section gdb-buildbot
@ 2020-06-05 15:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-05 15:58 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/2990
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
981f151804e47290f4dcff507aeb530b3334ac17
Subject of commit:
bfin: Skip non SEC_ALLOC section
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/98/981f151804e47290f4dcff507aeb530b3334ac17/
*** Diff to previous build ***
==============================================
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
==============================================
*** 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/98/981f151804e47290f4dcff507aeb530b3334ac17//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/98/981f151804e47290f4dcff507aeb530b3334ac17//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-05 15:04 [binutils-gdb] [gdb/NEWS] Fix typos gdb-buildbot
@ 2020-06-05 15:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-05 15:04 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/2989
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
82f06518c463badebdab653a7af4e4427c786742
Subject of commit:
[gdb/NEWS] Fix typos
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/82/82f06518c463badebdab653a7af4e4427c786742/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/82/82f06518c463badebdab653a7af4e4427c786742//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/82/82f06518c463badebdab653a7af4e4427c786742//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-05 13:15 [binutils-gdb] bpf stack smashing detected gdb-buildbot
@ 2020-06-05 13:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-05 13:15 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/2987
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
d3d1cc7b13b4b1f11862d6b58174c81536fb3340
Subject of commit:
bpf stack smashing detected
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d3/d3d1cc7b13b4b1f11862d6b58174c81536fb3340/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/d3/d3d1cc7b13b4b1f11862d6b58174c81536fb3340//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/d3/d3d1cc7b13b4b1f11862d6b58174c81536fb3340//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-05 11:24 [binutils-gdb] Extend pdp11-aout symbol table format and code for .stab symbols gdb-buildbot
@ 2020-06-05 11:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-05 11:24 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/2985
Author:
Stephen Casner <casner@acm.org>
Commit tested:
a975c88e6549c508ec86658e6816d7b8f16af13c
Subject of commit:
Extend pdp11-aout symbol table format and code for .stab symbols.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a9/a975c88e6549c508ec86658e6816d7b8f16af13c/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a9/a975c88e6549c508ec86658e6816d7b8f16af13c//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/a9/a975c88e6549c508ec86658e6816d7b8f16af13c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-05 10:30 [binutils-gdb] Correct a comment gdb-buildbot
@ 2020-06-05 10:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-05 10:30 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/2984
Author:
Stephen Casner <casner@acm.org>
Commit tested:
3b9313c4205b90e19fe2993f2e47d19fe1238894
Subject of commit:
Correct a comment.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3b/3b9313c4205b90e19fe2993f2e47d19fe1238894/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: inferior 1 exited
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/3b/3b9313c4205b90e19fe2993f2e47d19fe1238894//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/3b/3b9313c4205b90e19fe2993f2e47d19fe1238894//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-05 8:36 [binutils-gdb] x86: Remove target_id from elf_x86_link_hash_table gdb-buildbot
@ 2020-06-05 8:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-05 8:36 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/2982
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
add5f777decf9257f46c98dc2aacedb52a3d65e6
Subject of commit:
x86: Remove target_id from elf_x86_link_hash_table
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ad/add5f777decf9257f46c98dc2aacedb52a3d65e6/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ad/add5f777decf9257f46c98dc2aacedb52a3d65e6//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/ad/add5f777decf9257f46c98dc2aacedb52a3d65e6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-05 6:28 [binutils-gdb] [gdb/testsuite] Fix error handling in gdb_file_cmd gdb-buildbot
@ 2020-06-05 6:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-05 6:47 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/2980
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
95146b5da22532c6688e457adb48fecbceb194b3
Subject of commit:
[gdb/testsuite] Fix error handling in gdb_file_cmd
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/95/95146b5da22532c6688e457adb48fecbceb194b3/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/95/95146b5da22532c6688e457adb48fecbceb194b3//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/95/95146b5da22532c6688e457adb48fecbceb194b3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-04 16:50 [binutils-gdb] opcodes: discriminate endianness and insn-endianness in CGEN ports gdb-buildbot
@ 2020-06-04 16:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-04 16:50 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/2977
Author:
Jose E. Marchesi <jose.marchesi@oracle.com>
Commit tested:
e9bffec9afc45cf7c49308f0b4b8cc6bf68f58f2
Subject of commit:
opcodes: discriminate endianness and insn-endianness in CGEN ports
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e9/e9bffec9afc45cf7c49308f0b4b8cc6bf68f58f2/
*** 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=on: cond_bp_target=0: inferior 1 exited
PASS -> UNRESOLVED: gdb.trace/pending.exp: ftrace resolved: set pending tracepoint
PASS -> FAIL: gdb.trace/pending.exp: ftrace resolved: single tracepoint info
==============================================
*** 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/e9/e9bffec9afc45cf7c49308f0b4b8cc6bf68f58f2//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/e9/e9bffec9afc45cf7c49308f0b4b8cc6bf68f58f2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-04 15:55 [binutils-gdb] opcodes: support insn endianness in cgen_cpu_open gdb-buildbot
@ 2020-06-04 15:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-04 15:55 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/2976
Author:
Jose E. Marchesi <jose.marchesi@oracle.com>
Commit tested:
b3db6d07be467fe86f5b4185a8fc7bec49380c1f
Subject of commit:
opcodes: support insn endianness in cgen_cpu_open
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b3/b3db6d07be467fe86f5b4185a8fc7bec49380c1f/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/b3/b3db6d07be467fe86f5b4185a8fc7bec49380c1f//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/b3/b3db6d07be467fe86f5b4185a8fc7bec49380c1f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-04 13:45 [binutils-gdb] ELF: Don't check relocations in non-loaded, non-alloced sections gdb-buildbot
@ 2020-06-04 13:45 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-04 13:45 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/2974
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
c4b126b87a6cd842e567136b07ac1adca98c660f
Subject of commit:
ELF: Don't check relocations in non-loaded, non-alloced sections
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c4/c4b126b87a6cd842e567136b07ac1adca98c660f/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c4/c4b126b87a6cd842e567136b07ac1adca98c660f//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/c4b126b87a6cd842e567136b07ac1adca98c660f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-04 0:30 [binutils-gdb] [gdb/symtab] Fix missing breakpoint location for inlined function gdb-buildbot
@ 2020-06-04 0:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-04 0:30 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/2972
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
f9b5d5ea18a3878ca48c1b747e35d456133858bc
Subject of commit:
[gdb/symtab] Fix missing breakpoint location for inlined function
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f9/f9b5d5ea18a3878ca48c1b747e35d456133858bc/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
==============================================
*** 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/f9/f9b5d5ea18a3878ca48c1b747e35d456133858bc//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/f9/f9b5d5ea18a3878ca48c1b747e35d456133858bc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-03 23:35 [binutils-gdb] nios2: Call _bfd_elf_maybe_set_textrel to set DF_TEXTREL gdb-buildbot
@ 2020-06-03 23:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-03 23: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/2971
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
d4d8aee345704f7c39ebe9910cc08386708637b1
Subject of commit:
nios2: Call _bfd_elf_maybe_set_textrel to set DF_TEXTREL
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d4/d4d8aee345704f7c39ebe9910cc08386708637b1/
*** Diff to previous build ***
==============================================
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/d4/d4d8aee345704f7c39ebe9910cc08386708637b1//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/d4/d4d8aee345704f7c39ebe9910cc08386708637b1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-03 22:40 [binutils-gdb] nios2: Don't check relocations in non-loaded, non-alloced sections gdb-buildbot
@ 2020-06-03 22:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-03 22:40 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/2970
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
58ee44efbc3798a8224e685aa47b224dc67efe7d
Subject of commit:
nios2: Don't check relocations in non-loaded, non-alloced sections
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/58/58ee44efbc3798a8224e685aa47b224dc67efe7d/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/58/58ee44efbc3798a8224e685aa47b224dc67efe7d//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/58/58ee44efbc3798a8224e685aa47b224dc67efe7d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-03 20:31 [binutils-gdb] arc: Don't generate dynamic relocation for non SEC_ALLOC sections gdb-buildbot
@ 2020-06-03 20:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-03 20:50 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/2968
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
50d036364fb2a71b3ac9a0b0cdbe58296832a1b2
Subject of commit:
arc: Don't generate dynamic relocation for non SEC_ALLOC sections
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/50/50d036364fb2a71b3ac9a0b0cdbe58296832a1b2/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new KFAIL: gdb.ada/funcall_ref.exp: scenario=minimal: ptype get
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.base/a2-run.exp: run "a2-run" with shell
new FAIL: gdb.base/args.exp: argv[2] for one empty
new FAIL: gdb.base/args.exp: argv[2] for one newline
new FAIL: gdb.base/args.exp: argv[2] for two empty
new FAIL: gdb.base/args.exp: argv[2] for two newlines
new FAIL: gdb.base/args.exp: argv[3] for two empty
new FAIL: gdb.base/args.exp: argv[3] for two newlines
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new FAIL: gdb.base/foll-exec-mode.exp: same,continue,no_infswitch: use correct executable
new FAIL: gdb.base/foll-exec-mode.exp: same,next,no_infswitch: use correct executable
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new FAIL: gdb.base/gdbinit-history.exp: GDBHISTFILE is empty: show commands
new FAIL: gdb.base/gdbinit-history.exp: load GDBHISTFILE history file: show commands
new FAIL: gdb.base/gdbinit-history.exp: load default history file: show commands
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = on; run_args = $TEST: testing first argument
new FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = on; run_args = *.unique-extension: first argument expanded
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=off: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: pc after stepi matches insn addr after syscall
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new FAIL: gdb.opt/inline-small-func.exp: info breakpoints
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/tui-window.exp: Window was updated
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.threads/killed-outside.exp: prompt after first continue
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
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/50/50d036364fb2a71b3ac9a0b0cdbe58296832a1b2//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/50/50d036364fb2a71b3ac9a0b0cdbe58296832a1b2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-03 17:46 [binutils-gdb] This patch set for the generic BFD a.out backend removes a dead #define and makes aoutx.h self-contained: [PATCH 1/2]: bfd: remove unused NO_WRITE_HEADER_KLUDGE #define [PATCH 2/2]: bfd: make aoutx.h self-contained gdb-buildbot
@ 2020-06-03 18:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-03 18:05 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/2965
Author:
Gunther Nikl <gnikl@justmail.de>
Commit tested:
0bff75284e1067e22cbe88fad672362db06f22ee
Subject of commit:
This patch set for the generic BFD a.out backend removes a dead #define and makes aoutx.h self-contained: [PATCH 1/2]: bfd: remove unused NO_WRITE_HEADER_KLUDGE #define [PATCH 2/2]: bfd: make aoutx.h self-contained
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0b/0bff75284e1067e22cbe88fad672362db06f22ee/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/0b/0bff75284e1067e22cbe88fad672362db06f22ee//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/0b/0bff75284e1067e22cbe88fad672362db06f22ee//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-03 17:10 [binutils-gdb] ELF: Consolidate maybe_set_textrel gdb-buildbot
@ 2020-06-03 17:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-03 17:10 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/2964
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
d49e5065ed43ec88627fd8cc6ab9e45fcc0e538a
Subject of commit:
ELF: Consolidate maybe_set_textrel
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d4/d49e5065ed43ec88627fd8cc6ab9e45fcc0e538a/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
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
==============================================
*** 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/d4/d49e5065ed43ec88627fd8cc6ab9e45fcc0e538a//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/d4/d49e5065ed43ec88627fd8cc6ab9e45fcc0e538a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-03 16:09 [binutils-gdb] ELF: Copy dyn_relocs in _bfd_elf_link_hash_copy_indirect gdb-buildbot
@ 2020-06-03 16:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-03 16:09 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/2963
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
ad172eaa4f5ff973890a6c37574946cecf0668b0
Subject of commit:
ELF: Copy dyn_relocs in _bfd_elf_link_hash_copy_indirect
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ad/ad172eaa4f5ff973890a6c37574946cecf0668b0/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ad/ad172eaa4f5ff973890a6c37574946cecf0668b0//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/ad/ad172eaa4f5ff973890a6c37574946cecf0668b0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-03 10:21 [binutils-gdb] PR26069, strip/objcopy misaligned address accesses gdb-buildbot
@ 2020-06-03 10:21 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-03 10:21 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/2960
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
675800364bfdbc29ee034681339e4b4a137bb2f5
Subject of commit:
PR26069, strip/objcopy misaligned address accesses
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/67/675800364bfdbc29ee034681339e4b4a137bb2f5/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/67/675800364bfdbc29ee034681339e4b4a137bb2f5//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/67/675800364bfdbc29ee034681339e4b4a137bb2f5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-03 1:15 [binutils-gdb] gdb: Convert language skip_trampoline field to a method gdb-buildbot
@ 2020-06-03 1:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-03 1:15 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/2957
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
f6eee2d098049afd18f90b8f4bb6a5d1a49d900c
Subject of commit:
gdb: Convert language skip_trampoline field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f6/f6eee2d098049afd18f90b8f4bb6a5d1a49d900c/
*** 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 -> UNRESOLVED: gdb.threads/watchpoint-fork.exp: child: multithreaded: set follow-fork-mode child
==============================================
*** 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/f6/f6eee2d098049afd18f90b8f4bb6a5d1a49d900c//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/f6/f6eee2d098049afd18f90b8f4bb6a5d1a49d900c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-02 20:41 [binutils-gdb] gdb: Convert language la_get_compile_instance field to a method gdb-buildbot
@ 2020-06-02 20:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-02 20:41 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/2952
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
8e25bafe932b090850854321b816685b2462c17e
Subject of commit:
gdb: Convert language la_get_compile_instance field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8e/8e25bafe932b090850854321b816685b2462c17e/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8e/8e25bafe932b090850854321b816685b2462c17e//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/8e/8e25bafe932b090850854321b816685b2462c17e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-02 19:45 [binutils-gdb] gdb: Convert language la_iterate_over_symbols field to a method gdb-buildbot
@ 2020-06-02 19:45 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-02 19:45 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/2951
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
4009ee92c4ec3ee63f455c5abd761e26a819ef4a
Subject of commit:
gdb: Convert language la_iterate_over_symbols field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/40/4009ee92c4ec3ee63f455c5abd761e26a819ef4a/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/circ.exp: circular buffer: can't run to main
new UNRESOLVED: gdb.trace/circ.exp: circular buffer: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.trace/status-stop.exp: tstart_tstop_tstart: can't run to main
new UNRESOLVED: gdb.trace/status-stop.exp: tstart_tstop_tstart: delete all breakpoints in delete_breakpoints
==============================================
*** 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/40/4009ee92c4ec3ee63f455c5abd761e26a819ef4a//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/40/4009ee92c4ec3ee63f455c5abd761e26a819ef4a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-02 17:54 [binutils-gdb] gdb: Convert language la_language_arch_info field to a method gdb-buildbot
@ 2020-06-02 17:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-02 17:54 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/2949
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
1fb314aaa3142711e452e66c2dced781a4d1ef87
Subject of commit:
gdb: Convert language la_language_arch_info field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1f/1fb314aaa3142711e452e66c2dced781a4d1ef87/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/1f/1fb314aaa3142711e452e66c2dced781a4d1ef87//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/1f/1fb314aaa3142711e452e66c2dced781a4d1ef87//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-02 15:09 [binutils-gdb] gdb: Convert language la_print_array_index field to a method gdb-buildbot
@ 2020-06-02 15:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-02 15:09 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/2946
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
5bd40f2a3feb273e92b640544f6e5307c8124d90
Subject of commit:
gdb: Convert language la_print_array_index field to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5b/5bd40f2a3feb273e92b640544f6e5307c8124d90/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/5b/5bd40f2a3feb273e92b640544f6e5307c8124d90//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/5b/5bd40f2a3feb273e92b640544f6e5307c8124d90//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-01 15:41 [binutils-gdb] alpha-vms: ETIR checks gdb-buildbot
@ 2020-06-01 15:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-01 15:41 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/2942
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
2fdb65f247379befd548a33ea185172968b9ebb9
Subject of commit:
alpha-vms: ETIR checks
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2f/2fdb65f247379befd548a33ea185172968b9ebb9/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2f/2fdb65f247379befd548a33ea185172968b9ebb9//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/2f/2fdb65f247379befd548a33ea185172968b9ebb9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-01 14:47 [binutils-gdb] Regen opcodes/bpf-desc.c gdb-buildbot
@ 2020-06-01 14:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-01 14:47 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/2941
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
3c3d03769e4d6fea4c8ee97bf36a2ca7d572461c
Subject of commit:
Regen opcodes/bpf-desc.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3c/3c3d03769e4d6fea4c8ee97bf36a2ca7d572461c/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/3c/3c3d03769e4d6fea4c8ee97bf36a2ca7d572461c//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/3c/3c3d03769e4d6fea4c8ee97bf36a2ca7d572461c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-01 9:25 [binutils-gdb] gdb: Preserve is-stmt lines when switch between files gdb-buildbot
@ 2020-06-01 9:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-01 9:44 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/2940
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
1313c56ef9a68b5b753b3148dc7e8b3a4bb2d8ff
Subject of commit:
gdb: Preserve is-stmt lines when switch between files
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/13/1313c56ef9a68b5b753b3148dc7e8b3a4bb2d8ff/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: 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-extended-gdbserver-m64/13/1313c56ef9a68b5b753b3148dc7e8b3a4bb2d8ff//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/13/1313c56ef9a68b5b753b3148dc7e8b3a4bb2d8ff//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-06-01 8:35 [binutils-gdb] hurd: Add shared mig declarations gdb-buildbot
@ 2020-06-01 8:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-06-01 8: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/2939
Author:
Samuel Thibault <samuel.thibault@ens-lyon.org>
Commit tested:
b7ed9f3d466700d4e766083b1e4f3a132e5fd4b4
Subject of commit:
hurd: Add shared mig declarations
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b7/b7ed9f3d466700d4e766083b1e4f3a132e5fd4b4/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/b7/b7ed9f3d466700d4e766083b1e4f3a132e5fd4b4//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/b7/b7ed9f3d466700d4e766083b1e4f3a132e5fd4b4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-31 10:59 [binutils-gdb] gnu-nat: Move local functions inside gnu_nat_target class gdb-buildbot
@ 2020-05-31 10:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-31 10:59 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/2938
Author:
Samuel Thibault <samuel.thibault@ens-lyon.org>
Commit tested:
14a8ad62e6a7885296d234c3765bfab08df3dc6f
Subject of commit:
gnu-nat: Move local functions inside gnu_nat_target class
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/14/14a8ad62e6a7885296d234c3765bfab08df3dc6f/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new UNRESOLVED: gdb.trace/mi-tracepoint-changed.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/mi-tracepoint-changed.exp: delete all breakpoints in delete_breakpoints
==============================================
*** 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/14/14a8ad62e6a7885296d234c3765bfab08df3dc6f//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/14/14a8ad62e6a7885296d234c3765bfab08df3dc6f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-31 0:21 [binutils-gdb] hurd: add gnu_target pointer to fix thread API calls gdb-buildbot
@ 2020-05-31 0:21 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-31 0:21 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/2934
Author:
Samuel Thibault <samuel.thibault@ens-lyon.org>
Commit tested:
53dff92cb56fb21dc81c183aa35a5a3ae8c06e32
Subject of commit:
hurd: add gnu_target pointer to fix thread API calls
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/53/53dff92cb56fb21dc81c183aa35a5a3ae8c06e32/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/53/53dff92cb56fb21dc81c183aa35a5a3ae8c06e32//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/53/53dff92cb56fb21dc81c183aa35a5a3ae8c06e32//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-30 23:26 [binutils-gdb] hurd: remove unused variables gdb-buildbot
@ 2020-05-30 23:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-30 23:26 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/2933
Author:
Samuel Thibault <samuel.thibault@ens-lyon.org>
Commit tested:
5a8b86270bbce5f9316ef7bdaa1a20b4832335ca
Subject of commit:
hurd: remove unused variables
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5a/5a8b86270bbce5f9316ef7bdaa1a20b4832335ca/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: 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-extended-gdbserver-m64/5a/5a8b86270bbce5f9316ef7bdaa1a20b4832335ca//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/5a/5a8b86270bbce5f9316ef7bdaa1a20b4832335ca//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-30 22:32 [binutils-gdb] hurd: add missing include gdb-buildbot
@ 2020-05-30 22:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-30 22:32 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/2932
Author:
Samuel Thibault <samuel.thibault@ens-lyon.org>
Commit tested:
366f550a593c7e6bae3699a4b6d65fe937af5603
Subject of commit:
hurd: add missing include
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/36/366f550a593c7e6bae3699a4b6d65fe937af5603/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
==============================================
*** 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/36/366f550a593c7e6bae3699a4b6d65fe937af5603//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/36/366f550a593c7e6bae3699a4b6d65fe937af5603//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-30 21:37 [binutils-gdb] hurd: make function cast stronger gdb-buildbot
@ 2020-05-30 21:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-30 21:37 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/2931
Author:
Samuel Thibault <samuel.thibault@ens-lyon.org>
Commit tested:
f14871bfa408cf499e1783bc3e2aabb1bd3cf9a7
Subject of commit:
hurd: make function cast stronger
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f1/f14871bfa408cf499e1783bc3e2aabb1bd3cf9a7/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new KFAIL: gdb.ada/funcall_ref.exp: scenario=minimal: ptype get
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.base/a2-run.exp: run "a2-run" with shell
new FAIL: gdb.base/args.exp: argv[2] for one empty
new FAIL: gdb.base/args.exp: argv[2] for one newline
new FAIL: gdb.base/args.exp: argv[2] for two empty
new FAIL: gdb.base/args.exp: argv[2] for two newlines
new FAIL: gdb.base/args.exp: argv[3] for two empty
new FAIL: gdb.base/args.exp: argv[3] for two newlines
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new FAIL: gdb.base/foll-exec-mode.exp: same,continue,no_infswitch: use correct executable
new FAIL: gdb.base/foll-exec-mode.exp: same,next,no_infswitch: use correct executable
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new FAIL: gdb.base/gdbinit-history.exp: GDBHISTFILE is empty: show commands
new FAIL: gdb.base/gdbinit-history.exp: load GDBHISTFILE history file: show commands
new FAIL: gdb.base/gdbinit-history.exp: load default history file: show commands
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = on; run_args = $TEST: testing first argument
new FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = on; run_args = *.unique-extension: first argument expanded
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=off: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: pc after stepi matches insn addr after syscall
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new FAIL: gdb.opt/inline-small-func.exp: info breakpoints
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/tui-window.exp: Window was updated
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.threads/killed-outside.exp: prompt after first continue
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
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/f1/f14871bfa408cf499e1783bc3e2aabb1bd3cf9a7//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/f1/f14871bfa408cf499e1783bc3e2aabb1bd3cf9a7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-30 16:54 [binutils-gdb] gdb: change bug URL to https gdb-buildbot
@ 2020-05-30 16:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-30 16:54 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/2928
Author:
Jonny Grant <jg@jguk.org>
Commit tested:
112c22ed1f35049a73994bfdab0fdabb4fb91886
Subject of commit:
gdb: change bug URL to https
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/11/112c22ed1f35049a73994bfdab0fdabb4fb91886/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/11/112c22ed1f35049a73994bfdab0fdabb4fb91886//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/11/112c22ed1f35049a73994bfdab0fdabb4fb91886//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-30 8:38 [binutils-gdb] Fix build errors in with clang in gdb.compile/compile-cplus.c gdb-buildbot
@ 2020-05-30 8:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-30 8:38 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/2925
Author:
Gary Benson <gbenson@redhat.com>
Commit tested:
678048e8079ace915052f3070b2df97bcaea58d2
Subject of commit:
Fix build errors in with clang in gdb.compile/compile-cplus.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/67/678048e8079ace915052f3070b2df97bcaea58d2/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: iter=2: continue until exit
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: iter=2: print re_run_var_2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/67/678048e8079ace915052f3070b2df97bcaea58d2//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/67/678048e8079ace915052f3070b2df97bcaea58d2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-30 7:43 [binutils-gdb] Fix file-not-found error with clang in gdb.arch/i386-{avx, sse}.c gdb-buildbot
@ 2020-05-30 7:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-30 7:43 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/2924
Author:
Gary Benson <gbenson@redhat.com>
Commit tested:
9fcafd23fa6d919f112e9a7f73e72895c2457de1
Subject of commit:
Fix file-not-found error with clang in gdb.arch/i386-{avx,sse}.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9f/9fcafd23fa6d919f112e9a7f73e72895c2457de1/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================
*** 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/9f/9fcafd23fa6d919f112e9a7f73e72895c2457de1//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/9f/9fcafd23fa6d919f112e9a7f73e72895c2457de1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-30 6:49 [binutils-gdb] Build two gdb.cp testcases with -Wno-unused-comparison gdb-buildbot
@ 2020-05-30 6:49 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-30 6:49 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/2923
Author:
Gary Benson <gbenson@redhat.com>
Commit tested:
735d5a07160bcffaa8e66d4fffecd7f333a0e1fe
Subject of commit:
Build two gdb.cp testcases with -Wno-unused-comparison
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/73/735d5a07160bcffaa8e66d4fffecd7f333a0e1fe/
*** 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/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/Ubuntu-Aarch64-native-extended-gdbserver-m64/73/735d5a07160bcffaa8e66d4fffecd7f333a0e1fe//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/73/735d5a07160bcffaa8e66d4fffecd7f333a0e1fe//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-30 5:00 [binutils-gdb] cpu, opcodes: add instruction semantics to bpf.cpu and minor fixes gdb-buildbot
@ 2020-05-30 5:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-30 5:00 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/2921
Author:
Jose E. Marchesi <jose.marchesi@oracle.com>
Commit tested:
78c1c35437a013c63acbff6926ff8d254e283d69
Subject of commit:
cpu,opcodes: add instruction semantics to bpf.cpu and minor fixes
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/78/78c1c35437a013c63acbff6926ff8d254e283d69/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/78/78c1c35437a013c63acbff6926ff8d254e283d69//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/78/78c1c35437a013c63acbff6926ff8d254e283d69//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-30 3:10 [binutils-gdb] Fix Python3.9 related runtime problems gdb-buildbot
@ 2020-05-30 3:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-30 3:10 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/2919
Author:
Kevin Buettner <kevinb@redhat.com>
Commit tested:
c47bae859a5af0d95224d90000df0e529f7c5aa0
Subject of commit:
Fix Python3.9 related runtime problems
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c4/c47bae859a5af0d95224d90000df0e529f7c5aa0/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach child
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach parent
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: switch to parent
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new UNRESOLVED: gdb.trace/collection.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.trace/collection.exp: setting breakpoint at begin
new FAIL: 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/c47bae859a5af0d95224d90000df0e529f7c5aa0//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/c47bae859a5af0d95224d90000df0e529f7c5aa0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-30 0:26 [binutils-gdb] gdb: use caller objfile in dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value gdb-buildbot
@ 2020-05-30 0:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-30 0:26 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/2916
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
44486dcf19b62708ad49bbb6094e065a223dea99
Subject of commit:
gdb: use caller objfile in dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/44486dcf19b62708ad49bbb6094e065a223dea99/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/44486dcf19b62708ad49bbb6094e065a223dea99//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/44/44486dcf19b62708ad49bbb6094e065a223dea99//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 23:32 [binutils-gdb] Pass -Wno-deprecated-register for gdb.cp that use "register" gdb-buildbot
@ 2020-05-29 23:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 23:32 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/2915
Author:
Gary Benson <gbenson@redhat.com>
Commit tested:
09fe663ed827474bfb73b78d0506cecdcd8ece9d
Subject of commit:
Pass -Wno-deprecated-register for gdb.cp that use "register"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/09/09fe663ed827474bfb73b78d0506cecdcd8ece9d/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/09/09fe663ed827474bfb73b78d0506cecdcd8ece9d//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/09/09fe663ed827474bfb73b78d0506cecdcd8ece9d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 22:37 [binutils-gdb] [gdb/symtab] Make gold index workaround more precise gdb-buildbot
@ 2020-05-29 22:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 22:37 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/2914
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
f030440daa989ae3dadc1fa4342cfa16d690db3c
Subject of commit:
[gdb/symtab] Make gold index workaround more precise
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f0/f030440daa989ae3dadc1fa4342cfa16d690db3c/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f0/f030440daa989ae3dadc1fa4342cfa16d690db3c//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/f0/f030440daa989ae3dadc1fa4342cfa16d690db3c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 21:41 [binutils-gdb] Fix "'operator new' should not return NULL" errors in testsuite gdb-buildbot
@ 2020-05-29 21:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 21:41 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/2913
Author:
Gary Benson <gbenson@redhat.com>
Commit tested:
cee00f171520eb85867230d4cbed34480c64e71e
Subject of commit:
Fix "'operator new' should not return NULL" errors in testsuite
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/cee00f171520eb85867230d4cbed34480c64e71e/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/cee00f171520eb85867230d4cbed34480c64e71e//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/ce/cee00f171520eb85867230d4cbed34480c64e71e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 20:47 [binutils-gdb] ubsan: nios2: undefined shift gdb-buildbot
@ 2020-05-29 20:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 20:47 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/2912
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
efcf5fb585cdb6b7304a5a61a2d1e7db7d4bec6b
Subject of commit:
ubsan: nios2: undefined shift
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/efcf5fb585cdb6b7304a5a61a2d1e7db7d4bec6b/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/ef/efcf5fb585cdb6b7304a5a61a2d1e7db7d4bec6b//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/ef/efcf5fb585cdb6b7304a5a61a2d1e7db7d4bec6b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 19:53 [binutils-gdb] PR26044, Some targets can't be compiled with GCC 10 (tilepro) gdb-buildbot
@ 2020-05-29 19:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 19:53 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/2911
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
8eff95bcb6a778c35b91e61ccc066db335d7f06b
Subject of commit:
PR26044, Some targets can't be compiled with GCC 10 (tilepro)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8e/8eff95bcb6a778c35b91e61ccc066db335d7f06b/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/8e/8eff95bcb6a778c35b91e61ccc066db335d7f06b//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/8e/8eff95bcb6a778c35b91e61ccc066db335d7f06b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 18:58 [binutils-gdb] asan: ns32k: use of uninitialized value gdb-buildbot
@ 2020-05-29 18:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 18:58 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/2910
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
ab382d64260d6549f57201b80d34035726117e3f
Subject of commit:
asan: ns32k: use of uninitialized value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ab/ab382d64260d6549f57201b80d34035726117e3f/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/ab/ab382d64260d6549f57201b80d34035726117e3f//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/ab/ab382d64260d6549f57201b80d34035726117e3f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 18:04 [binutils-gdb] Fix a potential use of an uninitialised value in the ns32k disassembler gdb-buildbot
@ 2020-05-29 18:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 18:04 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/2909
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
151f5de4a6548cd83a79b4705f1e901776ddacc5
Subject of commit:
Fix a potential use of an uninitialised value in the ns32k disassembler.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/15/151f5de4a6548cd83a79b4705f1e901776ddacc5/
*** Diff to previous build ***
==============================================
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/15/151f5de4a6548cd83a79b4705f1e901776ddacc5//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/15/151f5de4a6548cd83a79b4705f1e901776ddacc5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 17:09 [binutils-gdb] cp-completion-aliases.exp: Use test_gdb_complete_{unique, multiple} gdb-buildbot
@ 2020-05-29 17:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 17:09 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/2908
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
636edd0018b72d67ee224e868fb277a658e9b984
Subject of commit:
cp-completion-aliases.exp: Use test_gdb_complete_{unique,multiple}
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/63/636edd0018b72d67ee224e868fb277a658e9b984/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/circ.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/circ.exp: delete all breakpoints in delete_breakpoints
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
==============================================
*** 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/63/636edd0018b72d67ee224e868fb277a658e9b984//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/63/636edd0018b72d67ee224e868fb277a658e9b984//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 16:12 [binutils-gdb] Use add_partial_symbol in load_partial_dies gdb-buildbot
@ 2020-05-29 16:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 16:12 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/2907
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
f0fbb768c223fd65385e2e2380fd04fde7121e5e
Subject of commit:
Use add_partial_symbol in load_partial_dies
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f0/f0fbb768c223fd65385e2e2380fd04fde7121e5e/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f0/f0fbb768c223fd65385e2e2380fd04fde7121e5e//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/f0/f0fbb768c223fd65385e2e2380fd04fde7121e5e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 15:17 [binutils-gdb] Inline abbrev lookup gdb-buildbot
@ 2020-05-29 15:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 15:17 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/2906
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
af0b2a3e85df9f49a3528e5b7578fcf9412f1acc
Subject of commit:
Inline abbrev lookup
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/af/af0b2a3e85df9f49a3528e5b7578fcf9412f1acc/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: 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-extended-gdbserver-m64/af/af0b2a3e85df9f49a3528e5b7578fcf9412f1acc//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/af/af0b2a3e85df9f49a3528e5b7578fcf9412f1acc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 14:23 [binutils-gdb] Lazily compute partial DIE name gdb-buildbot
@ 2020-05-29 14:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 14:23 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/2905
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
7d00ffecd2b16608f0bcfbc0402fec2cc228a3e7
Subject of commit:
Lazily compute partial DIE name
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7d/7d00ffecd2b16608f0bcfbc0402fec2cc228a3e7/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/7d/7d00ffecd2b16608f0bcfbc0402fec2cc228a3e7//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/7d/7d00ffecd2b16608f0bcfbc0402fec2cc228a3e7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 12:30 [binutils-gdb] Move exit_status_set_internal_vars out of GLOBAL_CURDIR gdb-buildbot
@ 2020-05-29 12:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 12:30 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/2903
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
c17ace4397c73bcdeb616f1b854a1cf8a8b6579c
Subject of commit:
Move exit_status_set_internal_vars out of GLOBAL_CURDIR
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c1/c17ace4397c73bcdeb616f1b854a1cf8a8b6579c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c1/c17ace4397c73bcdeb616f1b854a1cf8a8b6579c//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/c1/c17ace4397c73bcdeb616f1b854a1cf8a8b6579c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 11:16 [binutils-gdb] Use errno value of first openp failure gdb-buildbot
@ 2020-05-29 11:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 11: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/2902
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
96445f0b66af20343e2ffed08c4da8cfac101a03
Subject of commit:
Use errno value of first openp failure
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/96/96445f0b66af20343e2ffed08c4da8cfac101a03/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not detected
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/96/96445f0b66af20343e2ffed08c4da8cfac101a03//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/96/96445f0b66af20343e2ffed08c4da8cfac101a03//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 10:41 [binutils-gdb] Don't close process handle provided by WaitForDebugEvent gdb-buildbot
@ 2020-05-29 10:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 10:41 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/2901
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
6479bf854a468c0270bb0fcdc9d0271cca3eb5b5
Subject of commit:
Don't close process handle provided by WaitForDebugEvent
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/64/6479bf854a468c0270bb0fcdc9d0271cca3eb5b5/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/64/6479bf854a468c0270bb0fcdc9d0271cca3eb5b5//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/64/6479bf854a468c0270bb0fcdc9d0271cca3eb5b5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 9:27 [binutils-gdb] Don't close thread handles provided by WaitForDebugEvent gdb-buildbot
@ 2020-05-29 9:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 9:46 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/2900
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
ac637ec30dd9a3b19a02d1967a80e4ddf739706e
Subject of commit:
Don't close thread handles provided by WaitForDebugEvent
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ac/ac637ec30dd9a3b19a02d1967a80e4ddf739706e/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ac/ac637ec30dd9a3b19a02d1967a80e4ddf739706e//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/ac/ac637ec30dd9a3b19a02d1967a80e4ddf739706e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 7:57 [binutils-gdb] Move line_header_hash to dwarf2_per_objfile gdb-buildbot
@ 2020-05-29 7:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 7:57 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/2898
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
39b16f87f720b5cc454eac1e668c2ce2c60bfe15
Subject of commit:
Move line_header_hash to dwarf2_per_objfile
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/39/39b16f87f720b5cc454eac1e668c2ce2c60bfe15/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/39/39b16f87f720b5cc454eac1e668c2ce2c60bfe15//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/39/39b16f87f720b5cc454eac1e668c2ce2c60bfe15//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 3:22 [binutils-gdb] Make load_cu return the loaded dwarf2_cu gdb-buildbot
@ 2020-05-29 3:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 3:22 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/2893
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
1b555f17476d99f97f33fb4c648d94f7767bcbd7
Subject of commit:
Make load_cu return the loaded dwarf2_cu
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1b/1b555f17476d99f97f33fb4c648d94f7767bcbd7/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/1b/1b555f17476d99f97f33fb4c648d94f7767bcbd7//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/1b/1b555f17476d99f97f33fb4c648d94f7767bcbd7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 2:26 [binutils-gdb] Pass dwarf2_cu to process_full_{comp,type}_unit gdb-buildbot
@ 2020-05-29 2:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 2:26 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/2892
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
8fc0b21da6d25e0a9fc565a94d2301c2365f2d3c
Subject of commit:
Pass dwarf2_cu to process_full_{comp,type}_unit
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8f/8fc0b21da6d25e0a9fc565a94d2301c2365f2d3c/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/8f/8fc0b21da6d25e0a9fc565a94d2301c2365f2d3c//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/8f/8fc0b21da6d25e0a9fc565a94d2301c2365f2d3c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-29 0:35 [binutils-gdb] Move signatured_type::type to unshareable object gdb-buildbot
@ 2020-05-29 0:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-29 0: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/2890
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
e286671bf99ab870d67431068e863c1c57631b1f
Subject of commit:
Move signatured_type::type to unshareable object
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e2/e286671bf99ab870d67431068e863c1c57631b1f/
*** Diff to previous build ***
==============================================
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
==============================================
*** 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/e2/e286671bf99ab870d67431068e863c1c57631b1f//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/e2/e286671bf99ab870d67431068e863c1c57631b1f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-28 22:44 [binutils-gdb] Remove dwarf2_per_cu_data::dwarf2_per_objfile gdb-buildbot
@ 2020-05-28 22:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-28 22:44 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/2888
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
127bbf4b50c31b75b9d4c0ecc6b014dbd7ec38f9
Subject of commit:
Remove dwarf2_per_cu_data::dwarf2_per_objfile
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/12/127bbf4b50c31b75b9d4c0ecc6b014dbd7ec38f9/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/12/127bbf4b50c31b75b9d4c0ecc6b014dbd7ec38f9//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/12/127bbf4b50c31b75b9d4c0ecc6b014dbd7ec38f9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-28 20:15 [binutils-gdb] Add dwarf2_per_objfile parameter to get_die_type_at_offset gdb-buildbot
@ 2020-05-28 20:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-28 20:15 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/2886
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
aa66c379449b3ca41abfd5d43d97b0918387194c
Subject of commit:
Add dwarf2_per_objfile parameter to get_die_type_at_offset
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/aa/aa66c379449b3ca41abfd5d43d97b0918387194c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/aa/aa66c379449b3ca41abfd5d43d97b0918387194c//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/aa/aa66c379449b3ca41abfd5d43d97b0918387194c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-28 17:56 [binutils-gdb] Add dwarf2_per_objfile parameters to dwarf2_fetch_* functions gdb-buildbot
@ 2020-05-28 17:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-28 17:56 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/2883
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
14095eb32673d88b8495769e95e1db8393ed2a3a
Subject of commit:
Add dwarf2_per_objfile parameters to dwarf2_fetch_* functions
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/14/14095eb32673d88b8495769e95e1db8393ed2a3a/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/14/14095eb32673d88b8495769e95e1db8393ed2a3a//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/14/14095eb32673d88b8495769e95e1db8393ed2a3a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-28 16:37 [binutils-gdb] Add dwarf2_per_objfile parameter to allocate_piece_closure gdb-buildbot
@ 2020-05-28 16:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-28 16:56 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/2882
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
3c3cd3d4d7c7e05aa48b87c4ab11bac12a2caf7c
Subject of commit:
Add dwarf2_per_objfile parameter to allocate_piece_closure
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3c/3c3cd3d4d7c7e05aa48b87c4ab11bac12a2caf7c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/3c/3c3cd3d4d7c7e05aa48b87c4ab11bac12a2caf7c//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/3c/3c3cd3d4d7c7e05aa48b87c4ab11bac12a2caf7c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-28 15:00 [binutils-gdb] Remove dwarf2_per_cu_data::text_offset gdb-buildbot
@ 2020-05-28 15:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-28 15:00 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/2880
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
4b167ea1a0f1ff6f02684556e951dab8d48b9fa4
Subject of commit:
Remove dwarf2_per_cu_data::text_offset
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4b/4b167ea1a0f1ff6f02684556e951dab8d48b9fa4/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new KFAIL: gdb.ada/funcall_ref.exp: scenario=minimal: ptype get
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.base/a2-run.exp: run "a2-run" with shell
new FAIL: gdb.base/args.exp: argv[2] for one empty
new FAIL: gdb.base/args.exp: argv[2] for one newline
new FAIL: gdb.base/args.exp: argv[2] for two empty
new FAIL: gdb.base/args.exp: argv[2] for two newlines
new FAIL: gdb.base/args.exp: argv[3] for two empty
new FAIL: gdb.base/args.exp: argv[3] for two newlines
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new FAIL: gdb.base/foll-exec-mode.exp: same,continue,no_infswitch: use correct executable
new FAIL: gdb.base/foll-exec-mode.exp: same,next,no_infswitch: use correct executable
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new FAIL: gdb.base/gdbinit-history.exp: GDBHISTFILE is empty: show commands
new FAIL: gdb.base/gdbinit-history.exp: load GDBHISTFILE history file: show commands
new FAIL: gdb.base/gdbinit-history.exp: load default history file: show commands
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = on; run_args = $TEST: testing first argument
new FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = on; run_args = *.unique-extension: first argument expanded
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=off: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: pc after stepi matches insn addr after syscall
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new FAIL: gdb.opt/inline-small-func.exp: info breakpoints
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/tui-window.exp: Window was updated
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.threads/killed-outside.exp: prompt after first continue
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
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/4b/4b167ea1a0f1ff6f02684556e951dab8d48b9fa4//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/4b/4b167ea1a0f1ff6f02684556e951dab8d48b9fa4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-28 12:13 [binutils-gdb] Remove reference to dwarf2_per_cu_data::dwarf2_per_objfile in queue_and_load_all_dwo_tus gdb-buildbot
@ 2020-05-28 12:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-28 12:13 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/2877
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
64874a40306f556c290c8829f42526443db0f9e9
Subject of commit:
Remove reference to dwarf2_per_cu_data::dwarf2_per_objfile in queue_and_load_all_dwo_tus
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/64/64874a40306f556c290c8829f42526443db0f9e9/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/64/64874a40306f556c290c8829f42526443db0f9e9//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/64/64874a40306f556c290c8829f42526443db0f9e9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-28 9:25 [binutils-gdb] Add dwarf2_per_objfile parameter to recursively_compute_inclusions gdb-buildbot
@ 2020-05-28 9:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-28 9:25 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/2874
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
43182c09c6f90ebd46c3980e788c751efda8b1a9
Subject of commit:
Add dwarf2_per_objfile parameter to recursively_compute_inclusions
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/43/43182c09c6f90ebd46c3980e788c751efda8b1a9/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/pending.exp: trace disconn: can't run to main
new UNRESOLVED: gdb.trace/pending.exp: trace disconn_resolved: 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-native-extended-gdbserver-m64/43/43182c09c6f90ebd46c3980e788c751efda8b1a9//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/43/43182c09c6f90ebd46c3980e788c751efda8b1a9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-28 8:28 [binutils-gdb] Add dwarf2_per_objfile parameter to create_partial_symtab gdb-buildbot
@ 2020-05-28 8:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-28 8:28 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/2873
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
7aa104c423d935656d81ba6612586e98ee9babb5
Subject of commit:
Add dwarf2_per_objfile parameter to create_partial_symtab
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7a/7aa104c423d935656d81ba6612586e98ee9babb5/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/7a/7aa104c423d935656d81ba6612586e98ee9babb5//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/7a/7aa104c423d935656d81ba6612586e98ee9babb5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-28 5:41 [binutils-gdb] Add dwarf2_per_objfile parameter to cutu_reader's constructors gdb-buildbot
@ 2020-05-28 5:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-28 5:41 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/2870
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
ab4324907782afa676f6d8f7fe7589c99458f64b
Subject of commit:
Add dwarf2_per_objfile parameter to cutu_reader's constructors
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ab/ab4324907782afa676f6d8f7fe7589c99458f64b/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ab/ab4324907782afa676f6d8f7fe7589c99458f64b//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/ab/ab4324907782afa676f6d8f7fe7589c99458f64b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-28 1:57 [binutils-gdb] Remove dwarf2_cu->per_cu->dwarf2_per_objfile references gdb-buildbot
@ 2020-05-28 1:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-28 1:57 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/2866
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
5e22e966a02123478a3c5e067f911a3d180060af
Subject of commit:
Remove dwarf2_cu->per_cu->dwarf2_per_objfile references
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5e/5e22e966a02123478a3c5e067f911a3d180060af/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/5e/5e22e966a02123478a3c5e067f911a3d180060af//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/5e/5e22e966a02123478a3c5e067f911a3d180060af//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-28 0:06 [binutils-gdb] Add dwarf2_per_objfile field to dwarf2_cu gdb-buildbot
@ 2020-05-28 0:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-28 0:06 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/2864
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
9e021579fa12f4546a53d031f1293753305eec4b
Subject of commit:
Add dwarf2_per_objfile field to dwarf2_cu
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9e/9e021579fa12f4546a53d031f1293753305eec4b/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/9e/9e021579fa12f4546a53d031f1293753305eec4b//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/9e/9e021579fa12f4546a53d031f1293753305eec4b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-27 23:09 [binutils-gdb] Move die_type_hash to dwarf2_per_objfile gdb-buildbot
@ 2020-05-27 23:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-27 23:09 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/2863
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
ae090bdbf8876d4f72f357cf78301b5e8ec13751
Subject of commit:
Move die_type_hash to dwarf2_per_objfile
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ae/ae090bdbf8876d4f72f357cf78301b5e8ec13751/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: 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-extended-gdbserver-m64/ae/ae090bdbf8876d4f72f357cf78301b5e8ec13751//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/ae/ae090bdbf8876d4f72f357cf78301b5e8ec13751//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-27 21:16 [binutils-gdb] Split dwarf2_per_objfile into dwarf2_per_objfile and dwarf2_per_bfd gdb-buildbot
@ 2020-05-27 21:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-27 21:16 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/2861
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
5989a64ed5ee7a7f9c0fc284f66ef4bd414ad6c2
Subject of commit:
Split dwarf2_per_objfile into dwarf2_per_objfile and dwarf2_per_bfd
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/59/5989a64ed5ee7a7f9c0fc284f66ef4bd414ad6c2/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/59/5989a64ed5ee7a7f9c0fc284f66ef4bd414ad6c2//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/59/5989a64ed5ee7a7f9c0fc284f66ef4bd414ad6c2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-27 20:19 [binutils-gdb] Add dwarf2_per_objfile member to DWARF batons gdb-buildbot
@ 2020-05-27 20:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-27 20:19 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/2860
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
a50264baf57716993e701096fa6e466fb63e0301
Subject of commit:
Add dwarf2_per_objfile member to DWARF batons
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a5/a50264baf57716993e701096fa6e466fb63e0301/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/a5/a50264baf57716993e701096fa6e466fb63e0301//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/a5/a50264baf57716993e701096fa6e466fb63e0301//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-27 18:26 [binutils-gdb] Add "objfile" parameter to two partial_symtab methods gdb-buildbot
@ 2020-05-27 18:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-27 18:26 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/2858
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
5717c425a62c8e15a5936acdfa2bac2732aeb9b4
Subject of commit:
Add "objfile" parameter to two partial_symtab methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/57/5717c425a62c8e15a5936acdfa2bac2732aeb9b4/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/57/5717c425a62c8e15a5936acdfa2bac2732aeb9b4//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/57/5717c425a62c8e15a5936acdfa2bac2732aeb9b4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-27 14:31 [binutils-gdb] Fix PR 26000, logical bitwise error / prologue analyzer gdb-buildbot
@ 2020-05-27 14:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-27 14:31 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/2856
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
f8c6d1528c19b11fdaa3ec949147280e500446e2
Subject of commit:
Fix PR 26000, logical bitwise error / prologue analyzer
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f8/f8c6d1528c19b11fdaa3ec949147280e500446e2/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f8/f8c6d1528c19b11fdaa3ec949147280e500446e2//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/f8/f8c6d1528c19b11fdaa3ec949147280e500446e2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-27 13:36 [binutils-gdb] Fix some duplicate test names gdb-buildbot
@ 2020-05-27 13:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-27 13:36 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/2855
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
c2b750436a9db8cf491ddeb316bc71e4b65110b6
Subject of commit:
Fix some duplicate test names
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c2/c2b750436a9db8cf491ddeb316bc71e4b65110b6/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c2/c2b750436a9db8cf491ddeb316bc71e4b65110b6//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/c2/c2b750436a9db8cf491ddeb316bc71e4b65110b6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-27 12:40 [binutils-gdb] ld: Add --warn-textrel and obsolete --warn-shared-textrel gdb-buildbot
@ 2020-05-27 12:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-27 12:40 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/2854
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
a6dbf402de65fe66f4ec99b56527dfd00d077cb6
Subject of commit:
ld: Add --warn-textrel and obsolete --warn-shared-textrel
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a6/a6dbf402de65fe66f4ec99b56527dfd00d077cb6/
*** 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/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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a6/a6dbf402de65fe66f4ec99b56527dfd00d077cb6//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/a6/a6dbf402de65fe66f4ec99b56527dfd00d077cb6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-27 7:06 [binutils-gdb] Fix extraction of signed constants in nios2 disassembler (again) gdb-buildbot
@ 2020-05-27 7:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-27 7:06 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/2853
Author:
Sandra Loosemore <sandra@codesourcery.com>
Commit tested:
25e1eca8faf1c29d28e57b37d6b5e3810b7b870b
Subject of commit:
Fix extraction of signed constants in nios2 disassembler (again).
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/25/25e1eca8faf1c29d28e57b37d6b5e3810b7b870b/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/25/25e1eca8faf1c29d28e57b37d6b5e3810b7b870b//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/25/25e1eca8faf1c29d28e57b37d6b5e3810b7b870b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-26 17:54 [binutils-gdb] Use = instead of == for better portability gdb-buildbot
@ 2020-05-26 17:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-26 17:54 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/2849
Author:
Christian Biesinger via Gdb-patches <gdb-patches@sourceware.org>
Commit tested:
0db49895f30daea6edcc57e4c5003fd02a747c2b
Subject of commit:
Use = instead of == for better portability
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0d/0db49895f30daea6edcc57e4c5003fd02a747c2b/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/0d/0db49895f30daea6edcc57e4c5003fd02a747c2b//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/0d/0db49895f30daea6edcc57e4c5003fd02a747c2b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-26 16:58 [binutils-gdb] S/390: z13: Accept vector alignment hints gdb-buildbot
@ 2020-05-26 16:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-26 16:58 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/2848
Author:
Stefan Schulze Frielinghaus <stefansf@linux.ibm.com>
Commit tested:
f687f5f563a6407f74a6f3aacb00f07b1889470b
Subject of commit:
S/390: z13: Accept vector alignment hints
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f6/f687f5f563a6407f74a6f3aacb00f07b1889470b/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f6/f687f5f563a6407f74a6f3aacb00f07b1889470b//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/f6/f687f5f563a6407f74a6f3aacb00f07b1889470b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-26 14:32 [binutils-gdb] Extend the error message displayed when a plugin fails to load gdb-buildbot
@ 2020-05-26 14:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-26 14:32 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/2847
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
9e7cb4c359e6a86550bca296db617fb4c8068c1a
Subject of commit:
Extend the error message displayed when a plugin fails to load.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9e/9e7cb4c359e6a86550bca296db617fb4c8068c1a/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/9e/9e7cb4c359e6a86550bca296db617fb4c8068c1a//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/9e/9e7cb4c359e6a86550bca296db617fb4c8068c1a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-26 10:40 [binutils-gdb] [gdb/testsuite] Add target board gold-gdb-index gdb-buildbot
@ 2020-05-26 10:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-26 10:40 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/2844
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
043e2e02c0f4af920edca74247ff8e743126d723
Subject of commit:
[gdb/testsuite] Add target board gold-gdb-index
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/04/043e2e02c0f4af920edca74247ff8e743126d723/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/04/043e2e02c0f4af920edca74247ff8e743126d723//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/04/043e2e02c0f4af920edca74247ff8e743126d723//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-26 8:50 [binutils-gdb] gdb/testsuite: add simavr.exp board gdb-buildbot
@ 2020-05-26 8:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-26 8:50 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/2842
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
462f72c552226823829e7d370572b7e0852d9c02
Subject of commit:
gdb/testsuite: add simavr.exp board
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/46/462f72c552226823829e7d370572b7e0852d9c02/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/46/462f72c552226823829e7d370572b7e0852d9c02//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/46/462f72c552226823829e7d370572b7e0852d9c02//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-26 7:55 [binutils-gdb] gdb/testsuite: add inferior arguments test gdb-buildbot
@ 2020-05-26 7:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-26 7:55 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/2841
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
6cf66e763aec5b2c3d99063d9cc6f7b96b4b9dc9
Subject of commit:
gdb/testsuite: add inferior arguments test
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6c/6cf66e763aec5b2c3d99063d9cc6f7b96b4b9dc9/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/6c/6cf66e763aec5b2c3d99063d9cc6f7b96b4b9dc9//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/6c/6cf66e763aec5b2c3d99063d9cc6f7b96b4b9dc9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-26 7:00 [binutils-gdb] gdb/testsuite: support passing inferior arguments with native-gdbserver board gdb-buildbot
@ 2020-05-26 7:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-26 7:00 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/2840
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
75d04512401cbc9cd2d9835e77b90ac3ad1de7d8
Subject of commit:
gdb/testsuite: support passing inferior arguments with native-gdbserver board
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/75/75d04512401cbc9cd2d9835e77b90ac3ad1de7d8/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/75/75d04512401cbc9cd2d9835e77b90ac3ad1de7d8//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/75/75d04512401cbc9cd2d9835e77b90ac3ad1de7d8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-26 5:10 [binutils-gdb] Use construct_inferior_arguments which handles special chars gdb-buildbot
@ 2020-05-26 5:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-26 5:10 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/2838
Author:
Michael Weghorn <m.weghorn@posteo.de>
Commit tested:
bea571ebd78ee29cb94adf648fbcda1e109e1be6
Subject of commit:
Use construct_inferior_arguments which handles special chars
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/be/bea571ebd78ee29cb94adf648fbcda1e109e1be6/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/a2-run.exp: run "a2-run" with shell
PASS -> FAIL: gdb.base/args.exp: argv[2] for one empty
PASS -> FAIL: gdb.base/args.exp: argv[2] for one newline
PASS -> FAIL: gdb.base/args.exp: argv[2] for two empty
PASS -> FAIL: gdb.base/args.exp: argv[2] for two newlines
PASS -> FAIL: gdb.base/args.exp: argv[3] for two empty
PASS -> FAIL: gdb.base/args.exp: argv[3] for two newlines
PASS -> FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = on; run_args = $TEST: testing first argument
PASS -> FAIL: gdb.base/startup-with-shell.exp: startup_with_shell = on; run_args = *.unique-extension: first argument expanded
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/be/bea571ebd78ee29cb94adf648fbcda1e109e1be6//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/be/bea571ebd78ee29cb94adf648fbcda1e109e1be6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-26 3:18 [binutils-gdb] gdbserver: Don't add extra NULL to program args gdb-buildbot
@ 2020-05-26 3:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-26 3:18 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/2836
Author:
Michael Weghorn <m.weghorn@posteo.de>
Commit tested:
b69ca137aca2e4aa72f3cad60e0389019ab14116
Subject of commit:
gdbserver: Don't add extra NULL to program args
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b6/b69ca137aca2e4aa72f3cad60e0389019ab14116/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/b6/b69ca137aca2e4aa72f3cad60e0389019ab14116//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/b6/b69ca137aca2e4aa72f3cad60e0389019ab14116//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-26 2:22 [binutils-gdb] gdbsupport: Let construct_inferior_arguments take gdb::array_view param gdb-buildbot
@ 2020-05-26 2:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-26 2:22 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/2835
Author:
Michael Weghorn <m.weghorn@posteo.de>
Commit tested:
8c4b5f3d987c80a1746e3f198bb060d7d7671945
Subject of commit:
gdbsupport: Let construct_inferior_arguments take gdb::array_view param
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8c/8c4b5f3d987c80a1746e3f198bb060d7d7671945/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/8c/8c4b5f3d987c80a1746e3f198bb060d7d7671945//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/8c/8c4b5f3d987c80a1746e3f198bb060d7d7671945//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-26 1:26 [binutils-gdb] gdbsupport: Adapt construct_inferior_arguments gdb-buildbot
@ 2020-05-26 1:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-26 1:26 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/2834
Author:
Michael Weghorn <m.weghorn@posteo.de>
Commit tested:
c699004a29093c69fc6aeed04bbd838362666676
Subject of commit:
gdbsupport: Adapt construct_inferior_arguments
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c6/c699004a29093c69fc6aeed04bbd838362666676/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c6/c699004a29093c69fc6aeed04bbd838362666676//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/c6/c699004a29093c69fc6aeed04bbd838362666676//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-26 0:30 [binutils-gdb] gdb: Move construct_inferior_arguments to gdbsupport gdb-buildbot
@ 2020-05-26 0:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-26 0:30 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/2833
Author:
Michael Weghorn <m.weghorn@posteo.de>
Commit tested:
92651b1d91a124b8c14e45adc8d007b659cc92c2
Subject of commit:
gdb: Move construct_inferior_arguments to gdbsupport
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/92/92651b1d91a124b8c14e45adc8d007b659cc92c2/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/92/92651b1d91a124b8c14e45adc8d007b659cc92c2//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/92/92651b1d91a124b8c14e45adc8d007b659cc92c2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-25 21:24 [binutils-gdb] [gdb/testsuite] Fix exec_is_pie with gold linker gdb-buildbot
@ 2020-05-25 21:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-25 21:43 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/2830
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
465e1b0f196faea1fc949863af023b762ef86188
Subject of commit:
[gdb/testsuite] Fix exec_is_pie with gold linker
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/46/465e1b0f196faea1fc949863af023b762ef86188/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/46/465e1b0f196faea1fc949863af023b762ef86188//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/46/465e1b0f196faea1fc949863af023b762ef86188//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-25 19:52 [binutils-gdb] Revert "Add completion styling" gdb-buildbot
@ 2020-05-25 19:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-25 19:52 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/2828
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
0a4f5f8cae7ced715aca791bf4b212f43165119c
Subject of commit:
Revert "Add completion styling"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0a/0a4f5f8cae7ced715aca791bf4b212f43165119c/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/0a/0a4f5f8cae7ced715aca791bf4b212f43165119c//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/0a/0a4f5f8cae7ced715aca791bf4b212f43165119c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-25 17:09 [binutils-gdb] gdb: make gdbarch.sh write gdbarch.{c,h} directly gdb-buildbot
@ 2020-05-25 17:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-25 17:09 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/2827
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
41a77cbaadd63b92362f5ea35b2cd11f90edf170
Subject of commit:
gdb: make gdbarch.sh write gdbarch.{c,h} directly
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/41/41a77cbaadd63b92362f5ea35b2cd11f90edf170/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/callfuncs.exp: OpenCL support not detected
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/41/41a77cbaadd63b92362f5ea35b2cd11f90edf170//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/41/41a77cbaadd63b92362f5ea35b2cd11f90edf170//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-24 7:26 [binutils-gdb] gdb: remove TYPE_FIELD macro gdb-buildbot
@ 2020-05-24 7:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-24 7:26 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/2824
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
ceacbf6edf2c72aaa16280205a9bfc8513e9ed27
Subject of commit:
gdb: remove TYPE_FIELD macro
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/ceacbf6edf2c72aaa16280205a9bfc8513e9ed27/
*** 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
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/ceacbf6edf2c72aaa16280205a9bfc8513e9ed27//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/ce/ceacbf6edf2c72aaa16280205a9bfc8513e9ed27//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-23 23:04 [binutils-gdb] Add completion styling gdb-buildbot
@ 2020-05-24 1:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-24 1:10 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/2823
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
eca1f90cf47a2edc1a1cd22e12c6c0f3b900654e
Subject of commit:
Add completion styling
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ec/eca1f90cf47a2edc1a1cd22e12c6c0f3b900654e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/completion.exp: complete 'handle keyword'
PASS -> FAIL: gdb.base/completion.exp: complete 'handle signal'
PASS -> FAIL: gdb.base/completion.exp: complete 'info func marke'
PASS -> FAIL: gdb.base/completion.exp: complete 'p &values[0] -> a'
PASS -> FAIL: gdb.base/completion.exp: complete 'p no_var_named_this-arg'
PASS -> FAIL: gdb.base/completion.exp: complete 'p values[0] . a'
PASS -> FAIL: gdb.base/completion.exp: complete 'p values[0].a'
PASS -> FAIL: gdb.base/completion.exp: complete 'set follow-fork-mode'
PASS -> FAIL: gdb.base/completion.exp: complete
PASS -> FAIL: gdb.base/completion.exp: complete break break
PASS -> FAIL: gdb.base/completion.exp: complete help aliases
PASS -> FAIL: gdb.base/completion.exp: completion of field in anonymous union
PASS -> FAIL: gdb.base/completion.exp: set breakpoint pending off
PASS -> FAIL: gdb.base/completion.exp: tab complete break break
PASS -> FAIL: gdb.base/filesym.exp: completion list for "filesym"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-boolean: tab complete "maint test-options require-delimiter -bool "
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-boolean: tab complete "maint test-options require-delimiter -bool -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-boolean: tab complete "maint test-options require-delimiter -bool o"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-enum: tab complete "maint test-options require-delimiter -enum "
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-flag: tab complete "maint test-options require-delimiter -flag -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-misc: tab complete "maint test-options require-delimiter -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str="STR 'CCC' DDD": tab complete "maint test-options require-delimiter -string "STR 'CCC' DDD" -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str="STR AAA": tab complete "maint test-options require-delimiter -string "STR AAA" -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str="STR \"GGG\" HHH": tab complete "maint test-options require-delimiter -string "STR \"GGG\" HHH" -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str="STR": tab complete "maint test-options require-delimiter -string "STR" -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str='STR "EEE" FFF': tab complete "maint test-options require-delimiter -string 'STR "EEE" FFF' -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str='STR BBB': tab complete "maint test-options require-delimiter -string 'STR BBB' -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str='STR \'III\' JJJ': tab complete "maint test-options require-delimiter -string 'STR \'III\' JJJ' -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str='STR': tab complete "maint test-options require-delimiter -string 'STR' -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str=STR: tab complete "maint test-options require-delimiter -string STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str=\"STR: tab complete "maint test-options require-delimiter -string \"STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-string: str=\'STR: tab complete "maint test-options require-delimiter -string \'STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-uinteger: tab complete "maint test-options require-delimiter -uinteger "
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-uinteger: tab complete "maint test-options require-delimiter -uinteger 1 "
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-uinteger: tab complete "maint test-options require-delimiter -zuinteger-unlimited "
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-uinteger: tab complete "maint test-options require-delimiter -zuinteger-unlimited -1 "
PASS -> FAIL: gdb.base/options.exp: cmd=require-delimiter: test-uinteger: tab complete "maint test-options require-delimiter -zuinteger-unlimited 1 "
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-boolean: tab complete "maint test-options unknown-is-error -bool -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-boolean: tab complete "maint test-options unknown-is-error -bool o"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-enum: tab complete "maint test-options unknown-is-error -enum "
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-flag: tab complete "maint test-options unknown-is-error -flag -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-misc: tab complete "maint test-options unknown-is-error -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str="STR 'CCC' DDD": tab complete "maint test-options unknown-is-error -string "STR 'CCC' DDD" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str="STR AAA": tab complete "maint test-options unknown-is-error -string "STR AAA" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str="STR \"GGG\" HHH": tab complete "maint test-options unknown-is-error -string "STR \"GGG\" HHH" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str="STR": tab complete "maint test-options unknown-is-error -string "STR" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str='STR "EEE" FFF': tab complete "maint test-options unknown-is-error -string 'STR "EEE" FFF' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str='STR BBB': tab complete "maint test-options unknown-is-error -string 'STR BBB' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str='STR \'III\' JJJ': tab complete "maint test-options unknown-is-error -string 'STR \'III\' JJJ' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str='STR': tab complete "maint test-options unknown-is-error -string 'STR' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str=STR: tab complete "maint test-options unknown-is-error -string STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str=\"STR: tab complete "maint test-options unknown-is-error -string \"STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-string: str=\'STR: tab complete "maint test-options unknown-is-error -string \'STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-uinteger: tab complete "maint test-options unknown-is-error -uinteger "
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-error: test-uinteger: tab complete "maint test-options unknown-is-error -zuinteger-unlimited "
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-boolean: tab complete "maint test-options unknown-is-operand -bool -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-boolean: tab complete "maint test-options unknown-is-operand -bool o"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-enum: tab complete "maint test-options unknown-is-operand -enum "
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-flag: tab complete "maint test-options unknown-is-operand -flag -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-misc: tab complete "maint test-options unknown-is-operand -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str="STR 'CCC' DDD": tab complete "maint test-options unknown-is-operand -string "STR 'CCC' DDD" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str="STR AAA": tab complete "maint test-options unknown-is-operand -string "STR AAA" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str="STR \"GGG\" HHH": tab complete "maint test-options unknown-is-operand -string "STR \"GGG\" HHH" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str="STR": tab complete "maint test-options unknown-is-operand -string "STR" -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str='STR "EEE" FFF': tab complete "maint test-options unknown-is-operand -string 'STR "EEE" FFF' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str='STR BBB': tab complete "maint test-options unknown-is-operand -string 'STR BBB' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str='STR \'III\' JJJ': tab complete "maint test-options unknown-is-operand -string 'STR \'III\' JJJ' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str='STR': tab complete "maint test-options unknown-is-operand -string 'STR' -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str=STR: tab complete "maint test-options unknown-is-operand -string STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str=\"STR: tab complete "maint test-options unknown-is-operand -string \"STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-string: str=\'STR: tab complete "maint test-options unknown-is-operand -string \'STR -"
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-uinteger: tab complete "maint test-options unknown-is-operand -uinteger "
PASS -> FAIL: gdb.base/options.exp: cmd=unknown-is-operand: test-uinteger: tab complete "maint test-options unknown-is-operand -zuinteger-unlimited "
PASS -> FAIL: gdb.base/options.exp: test-backtrace: tab complete "backtrace -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "faas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "faas -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "faas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply 1 -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply 1 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply all "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply all -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply all -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply level 0 "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply level 0 -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "frame apply level 0 -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "tfaas "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "tfaas -"
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: tab complete "tfaas -s "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: tab complete "faas -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: tab complete "frame apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: tab complete "frame apply all -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: tab complete "frame apply level 0 -- "
PASS -> FAIL: gdb.base/options.exp: test-frame-apply: trailing-space: tab complete "tfaas -- "
PASS -> FAIL: gdb.base/options.exp: test-info-threads: tab complete "info threads "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply all print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply level 0 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply 1 frame apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply all print -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "taas "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "taas -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "taas -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "thread apply 1 "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "thread apply 1 -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "thread apply 1 -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "thread apply all "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "thread apply all -"
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: tab complete "thread apply all -c "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: tab complete "taas -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: tab complete "thread apply 1 -- "
PASS -> FAIL: gdb.base/options.exp: test-thread-apply: trailing-space: tab complete "thread apply all -- "
PASS -> FAIL: gdb.base/settings.exp: test-auto-boolean: tab complete "maint set test-settings auto-boolean "
PASS -> FAIL: gdb.base/settings.exp: test-boolean: tab complete "maint set test-settings boolean "
PASS -> FAIL: gdb.base/settings.exp: test-enum: tab complete "maint set test-settings enum "
PASS -> FAIL: gdb.base/settings.exp: test-integer zuinteger: tab complete "maint set test-settings zuinteger"
PASS -> FAIL: gdb.base/settings.exp: test-integer zuinteger: tab complete "maintenance show test-settings zuinteger"
PASS -> FAIL: gdb.base/settings.exp: test-string string: tab complete "maint show test-settings string"
PASS -> FAIL: gdb.base/shell.exp: tab complete "pipe "
PASS -> FAIL: gdb.base/shell.exp: tab complete "| "
PASS -> FAIL: gdb.base/shell.exp: tab complete "|"
PASS -> FAIL: gdb.base/skip.exp: skip delete completion: tab complete "skip delete "
PASS -> FAIL: gdb.base/skip.exp: skip delete completion: tab complete "skip delete 1"
PASS -> FAIL: gdb.base/skip.exp: skip delete completion: tab complete "skip delete 2 "
PASS -> FAIL: gdb.base/skip.exp: skip delete completion: tab complete "skip delete 2-"
PASS -> FAIL: gdb.base/with.exp: completion: tab complete "with print elements unlimited -- "
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS:"
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: tab complete "p Test_NS::"
PASS -> FAIL: gdb.linespec/cp-completion-aliases.exp: tab complete "break get_som"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: ambiguous-prefix: tab complete "b -function ambiguous_pre"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: ambiguous-prefix: tab complete "b ambiguous_pre"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b
PASS -> FAIL: gdb.linespec/cpcompletion.exp: anon-ns: tab complete "b -function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: tab complete "b -function const_overload_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: tab complete "b -function const_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: tab complete "b const_overload_fn
PASS -> FAIL: gdb.linespec/cpcompletion.exp: const-overload: tab complete "b const_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified -function ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified -source cpls.cc -function ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified cpls.cc:ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -qualified ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: fqn: tab complete "b -source cpls.cc -qualified -function ns_overload2_test::"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc": "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc": 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc": function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc":"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc":'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "cpls.cc":function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc': "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc': 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc': function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc':"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc':'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'cpls.cc':function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source "cpls.cc" -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source "cpls.cc" -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source "cpls.cc" -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source 'cpls.cc' -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source 'cpls.cc' -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source 'cpls.cc' -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source cpls.cc -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source cpls.cc -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b -source cpls.cc -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc: "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc: 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc: function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc:"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc:'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b cpls.cc:function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: function-labels: tab complete "b function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc": "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc": ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc": '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc":"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc":""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b "cpls2.cc":'"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc': "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc': ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc': '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc':"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc':""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b 'cpls2.cc':'"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source "cpls2.cc" -function "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source "cpls2.cc" -function ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source "cpls2.cc" -function '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source 'cpls2.cc' -function "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source 'cpls2.cc' -function ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source 'cpls2.cc' -function '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source cpls2.cc -function "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source cpls2.cc -function ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b -source cpls2.cc -function '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc: "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc: ""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc: '"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc:"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc:""
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-ambiguous: tab complete "b cpls2.cc:'"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: in-source-file-unconstrained: tab complete "b file_constrained_test"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc": "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc": "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc": 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc": 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc": function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc": unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc":"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc":"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc":'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc":'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc":function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "cpls.cc":unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc": "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc": "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc": 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc": 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc": function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc": unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc":"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc":"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc":'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc":'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc":function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_file.cc":unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc': "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc': "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc': 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc': 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc': function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc': unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc':"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc':"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc':'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc':'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc':function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'cpls.cc':unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc': "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc': "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc': 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc': 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc': function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc': unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc':"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc':"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc':'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc':'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc':function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_file.cc':unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "cpls.cc" -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "cpls.cc" -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "cpls.cc" -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "cpls.cc" -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "cpls.cc" -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "cpls.cc" -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "unknown_file.cc" -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "unknown_file.cc" -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "unknown_file.cc" -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "unknown_file.cc" -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "unknown_file.cc" -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source "unknown_file.cc" -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'cpls.cc' -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'cpls.cc' -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'cpls.cc' -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'cpls.cc' -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'cpls.cc' -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'cpls.cc' -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'unknown_file.cc' -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'unknown_file.cc' -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'unknown_file.cc' -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'unknown_file.cc' -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'unknown_file.cc' -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source 'unknown_file.cc' -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source cpls.cc -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source cpls.cc -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source cpls.cc -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source cpls.cc -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source cpls.cc -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source cpls.cc -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source unknown_file.cc -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source unknown_file.cc -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source unknown_file.cc -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source unknown_file.cc -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source unknown_file.cc -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b -source unknown_file.cc -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc: "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc: "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc: 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc: 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc: function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc: unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc:"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc:"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc:'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc:'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc:function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b cpls.cc:unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc: "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc: "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc: 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc: 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc: function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc: unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc:"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc:"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc:'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc:'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc:function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_file.cc:unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-function: tab complete "b unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc": "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc": "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc": 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc": 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc": function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc": unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc":"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc":"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc":'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc":'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc":function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "cpls.cc":unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc': "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc': "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc': 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc': 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc': function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc': unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc':"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc':"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc':'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc':'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc':function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'cpls.cc':unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source "cpls.cc" -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source "cpls.cc" -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source "cpls.cc" -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source "cpls.cc" -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source "cpls.cc" -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source "cpls.cc" -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source 'cpls.cc' -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source 'cpls.cc' -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source 'cpls.cc' -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source 'cpls.cc' -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source 'cpls.cc' -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source 'cpls.cc' -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source cpls.cc -function "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source cpls.cc -function "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source cpls.cc -function 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source cpls.cc -function 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source cpls.cc -function function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b -source cpls.cc -function unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc: "function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc: "unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc: 'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc: 'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc: function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc: unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc:"function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc:"unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc:'function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc:'unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc:function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b cpls.cc:unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b function_with_labels
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-label: tab complete "b unknown_function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-unknown-file: tab complete "b "unknown_file.cc": "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-unknown-file: tab complete "b 'unknown_file.cc': "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: keywords-after-unknown-file: tab complete "b unknown_file.cc: "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: all: tab complete "b -function overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: all: tab complete "b overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: tab complete "b
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope 2: tab complete "b -function
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: tab complete "b -function ns_overload2_test::overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-2: restrict scope: tab complete "b ns_overload2_test::overload2_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: all overloads: tab complete "b -function overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: all overloads: tab complete "b overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: tab complete "b -function struct_overload3_test::overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload-3: restrict scope: tab complete "b struct_overload3_test::overload3_func"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: tab complete "b -function overload_ambiguous_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: overload: tab complete "b overload_ambiguous_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b "nonexistingfilename.cc" "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b 'nonexistingfilename.cc' "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: source-complete-appends-colon: tab complete "b nonexistingfilename.cc "
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: tab complete "b -function template_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-overload: tab complete "b template_overload_fn"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b -function template2_"
PASS -> FAIL: gdb.linespec/cpcompletion.exp: template-ret-type: tab complete "b template2_"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: tab complete "b -function test_abi_tag_in_para"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: tab complete "b -function test_abi_tag_in_params
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: tab complete "b test_abi_tag_in_para"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: abi tag in parameters: tab complete "b test_abi_tag_in_params
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b -function test_abi_tag_ovld2_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b -function test_abi_tag_ovld2_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b -function test_abi_tag_ovld2_function[abi:tag2"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b test_abi_tag_ovld2_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b test_abi_tag_ovld2_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions different abi: tab complete "b test_abi_tag_ovld2_function[abi:tag2"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: tab complete "b -function test_abi_tag_ovld_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: tab complete "b -function test_abi_tag_ovld_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: tab complete "b test_abi_tag_ovld_f"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of overloaded functions: tab complete "b test_abi_tag_ovld_function["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b -function test_abi_tag_struc"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b -function test_abi_tag_struct["
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b test_abi_tag_struc"
PASS -> FAIL: gdb.linespec/cpls-abi-tag.exp: test_abi_tag: completion of struct prefixes with tags: tab complete "b test_abi_tag_struct["
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: tab complete "b -function test_op_array::operator[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: operator[]-ambiguous: tab complete "b test_op_array::operator[]"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b -function test_ops::operator"
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-ambiguous: tab complete "b test_ops::operator"
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -function -qualified: tab complete "b -function argument -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -function: tab complete "b -function argument "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -label -qualified: tab complete "b -label argument -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -label: tab complete "b -label argument "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -line -qualified: tab complete "b -line +10 -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -line -qualified: tab complete "b -line -10 -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -line -qualified: tab complete "b -line 10 -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -line: tab complete "b -line +10 "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -line: tab complete "b -line -10 "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -line: tab complete "b -line 10 "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -function -qualified: tab complete "b -qualified -function argument -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -function: tab complete "b -qualified -function argument "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -label -qualified: tab complete "b -qualified -label argument -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -label: tab complete "b -qualified -label argument "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -line -qualified: tab complete "b -qualified -line +10 -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -line -qualified: tab complete "b -qualified -line -10 -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -line -qualified: tab complete "b -qualified -line 10 -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -line: tab complete "b -qualified -line +10 "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -line: tab complete "b -qualified -line -10 "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -line: tab complete "b -qualified -line 10 "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -source -qualified: tab complete "b -qualified -source argument -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -qualified -source: tab complete "b -qualified -source argument "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -source -qualified: tab complete "b -source argument -qualified "
PASS -> FAIL: gdb.linespec/explicit.exp: complete after -source: tab complete "b -source argument "
PASS -> FAIL: gdb.linespec/explicit.exp: complete filename and non-unique function name
PASS -> FAIL: gdb.linespec/explicit.exp: complete non-unique file name
PASS -> FAIL: gdb.linespec/explicit.exp: complete non-unique function name
PASS -> FAIL: gdb.linespec/explicit.exp: complete non-unique label name: tab complete "b -function myfunction -label "
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: tab complete "b -label top -function myfunction"
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: tab complete "b "
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: tab complete "b -"
PASS -> FAIL: gdb.linespec/linespec.exp: complete non-unique function name in two source files
PASS -> FAIL: gdb.linespec/linespec.exp: complete unique function name in disambiguated source file
PASS -> FAIL: gdb.linespec/linespec.exp: set break in function in non-existing absolute path
==============================================
*** 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/ec/eca1f90cf47a2edc1a1cd22e12c6c0f3b900654e//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/ec/eca1f90cf47a2edc1a1cd22e12c6c0f3b900654e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-23 8:08 [binutils-gdb] Fix potential segfault gdb-buildbot
@ 2020-05-23 8:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-23 8:08 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/2821
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
c892b44730bb1a66d614fd47fabe47555ca83b3b
Subject of commit:
Fix potential segfault
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c8/c892b44730bb1a66d614fd47fabe47555ca83b3b/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c8/c892b44730bb1a66d614fd47fabe47555ca83b3b//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/c8/c892b44730bb1a66d614fd47fabe47555ca83b3b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-23 0:24 [binutils-gdb] gdb: remove TYPE_FIELDS macro gdb-buildbot
@ 2020-05-23 0:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-23 0:24 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/2820
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
80fc5e77f07557830aaac90723dc599e6d047922
Subject of commit:
gdb: remove TYPE_FIELDS macro
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/80/80fc5e77f07557830aaac90723dc599e6d047922/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/80/80fc5e77f07557830aaac90723dc599e6d047922//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/80/80fc5e77f07557830aaac90723dc599e6d047922//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-22 23:30 [binutils-gdb] gdb: add type::fields / type::set_fields gdb-buildbot
@ 2020-05-22 23:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-22 23:30 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/2819
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
3cabb6b0694b65c7b5ed800822ca08bd899fc1d1
Subject of commit:
gdb: add type::fields / type::set_fields
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3c/3cabb6b0694b65c7b5ed800822ca08bd899fc1d1/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/3c/3cabb6b0694b65c7b5ed800822ca08bd899fc1d1//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/3c/3cabb6b0694b65c7b5ed800822ca08bd899fc1d1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-22 21:40 [binutils-gdb] gdb: add type::num_fields / type::set_num_fields gdb-buildbot
@ 2020-05-22 21:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-22 21:40 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/2817
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
5e33d5f4e1a5f2c3556ee31715ddc030d039b597
Subject of commit:
gdb: add type::num_fields / type::set_num_fields
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5e/5e33d5f4e1a5f2c3556ee31715ddc030d039b597/
*** Diff to previous build ***
==============================================
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/5e/5e33d5f4e1a5f2c3556ee31715ddc030d039b597//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/5e/5e33d5f4e1a5f2c3556ee31715ddc030d039b597//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-22 20:18 [binutils-gdb] Remove obsolete declaration gdb-buildbot
@ 2020-05-22 20:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-22 20:18 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/2816
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
9392ebb3bbe4a43726ee8939c5447d88c7d3c1e4
Subject of commit:
Remove obsolete declaration
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/93/9392ebb3bbe4a43726ee8939c5447d88c7d3c1e4/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/mi-tracepoint-changed.exp: pending resolved: continuing execution to marker 1
new FAIL: gdb.trace/mi-tracepoint-changed.exp: pending resolved: continuing to exit
new UNRESOLVED: gdb.trace/mi-tracepoint-changed.exp: reconnect: 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-native-extended-gdbserver-m64/93/9392ebb3bbe4a43726ee8939c5447d88c7d3c1e4//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/93/9392ebb3bbe4a43726ee8939c5447d88c7d3c1e4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-21 3:04 [binutils-gdb] Replace "if (x) free (x)" with "free (x)", opcodes gdb-buildbot
@ 2020-05-21 3:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-21 3:04 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/2810
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
d96bf37ba8360320db4d531008634b3f61af06f5
Subject of commit:
Replace "if (x) free (x)" with "free (x)", opcodes
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d9/d96bf37ba8360320db4d531008634b3f61af06f5/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/d9/d96bf37ba8360320db4d531008634b3f61af06f5//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/d9/d96bf37ba8360320db4d531008634b3f61af06f5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-21 2:09 [binutils-gdb] Replace "if (x) free (x)" with "free (x)", bfd gdb-buildbot
@ 2020-05-21 2:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-21 2:09 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/2809
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
c95949892f6f1e2974a0fb8a5463d7b6432ac469
Subject of commit:
Replace "if (x) free (x)" with "free (x)", bfd
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c9/c95949892f6f1e2974a0fb8a5463d7b6432ac469/
*** 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
==============================================
*** 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/c9/c95949892f6f1e2974a0fb8a5463d7b6432ac469//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/c9/c95949892f6f1e2974a0fb8a5463d7b6432ac469//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-20 14:57 [binutils-gdb] Fix array_char_idx.exp gdb-buildbot
@ 2020-05-20 14:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-20 14:57 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/2805
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
b4757f2e45f292c9f0e48e8dbdc003e5dbfca5ed
Subject of commit:
Fix array_char_idx.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b4/b4757f2e45f292c9f0e48e8dbdc003e5dbfca5ed/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: 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-extended-gdbserver-m64/b4/b4757f2e45f292c9f0e48e8dbdc003e5dbfca5ed//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/b4/b4757f2e45f292c9f0e48e8dbdc003e5dbfca5ed//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-20 14:02 [binutils-gdb] Remove bound_name static from ada-lang.c gdb-buildbot
@ 2020-05-20 14:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-20 14:02 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/2804
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
250106a76acffac0067c6618dd784f2260b56ade
Subject of commit:
Remove bound_name static from ada-lang.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/25/250106a76acffac0067c6618dd784f2260b56ade/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/25/250106a76acffac0067c6618dd784f2260b56ade//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/25/250106a76acffac0067c6618dd784f2260b56ade//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-20 10:29 [binutils-gdb] [gdb/symtab] Handle .gdb_index in ada language mode gdb-buildbot
@ 2020-05-20 10:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-20 10:29 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/2803
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
9a0bacfb08eb87938919023915ecc0ca2ba21223
Subject of commit:
[gdb/symtab] Handle .gdb_index in ada language mode
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9a/9a0bacfb08eb87938919023915ecc0ca2ba21223/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/9a/9a0bacfb08eb87938919023915ecc0ca2ba21223//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/9a/9a0bacfb08eb87938919023915ecc0ca2ba21223//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-20 6:56 [binutils-gdb] PR25993, read of freed memory gdb-buildbot
@ 2020-05-20 6:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-20 6:56 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/2802
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
7b958a48e1322880f23cdb0a1c35643dd27d3ddb
Subject of commit:
PR25993, read of freed memory
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7b/7b958a48e1322880f23cdb0a1c35643dd27d3ddb/
*** 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-extended-gdbserver-m64/7b/7b958a48e1322880f23cdb0a1c35643dd27d3ddb//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/7b/7b958a48e1322880f23cdb0a1c35643dd27d3ddb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-20 6:01 [binutils-gdb] Power10 dcbf, sync, and wait extensions gdb-buildbot
@ 2020-05-20 6:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-20 6: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/2801
Author:
Peter Bergner <bergner@linux.ibm.com>
Commit tested:
3d205eb4481c3add674166f716fc052b6fdcbf2e
Subject of commit:
Power10 dcbf, sync, and wait extensions.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3d/3d205eb4481c3add674166f716fc052b6fdcbf2e/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/3d/3d205eb4481c3add674166f716fc052b6fdcbf2e//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/3d/3d205eb4481c3add674166f716fc052b6fdcbf2e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-20 5:06 [binutils-gdb] PR26011, excessive memory allocation with fuzzed reloc sections gdb-buildbot
@ 2020-05-20 5:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-20 5:06 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/2800
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
3c568b8afab512d12eb5adcf304e505b1bce644d
Subject of commit:
PR26011, excessive memory allocation with fuzzed reloc sections
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3c/3c568b8afab512d12eb5adcf304e505b1bce644d/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.opencl/vec_comps.exp: OpenCL support not detected
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/3c/3c568b8afab512d12eb5adcf304e505b1bce644d//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/3c/3c568b8afab512d12eb5adcf304e505b1bce644d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-19 18:54 [binutils-gdb] [gdb/testsuite] Fix typo in gdb.base/gdb-caching-proc.exp gdb-buildbot
@ 2020-05-20 2:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-20 2:22 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/2797
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
4cd9f3d510840bb951cd9498cdf390dd9e59adc9
Subject of commit:
[gdb/testsuite] Fix typo in gdb.base/gdb-caching-proc.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4c/4cd9f3d510840bb951cd9498cdf390dd9e59adc9/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/4c/4cd9f3d510840bb951cd9498cdf390dd9e59adc9//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/4c/4cd9f3d510840bb951cd9498cdf390dd9e59adc9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-19 17:49 [binutils-gdb] Default gdb_bfd_open's fd parameter to -1 gdb-buildbot
@ 2020-05-19 22:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-19 22:55 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/2791
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
ad80db5b9f7c95105c78d3ab439678184d1b7177
Subject of commit:
Default gdb_bfd_open's fd parameter to -1
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ad/ad80db5b9f7c95105c78d3ab439678184d1b7177/
*** 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
==============================================
*** 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/ad/ad80db5b9f7c95105c78d3ab439678184d1b7177//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/ad/ad80db5b9f7c95105c78d3ab439678184d1b7177//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-19 17:41 [binutils-gdb] gdb: make symfile_segment_data::segment_info an std::vector gdb-buildbot
@ 2020-05-19 19:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-19 19: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/2788
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
9005fbbb0023f212fcd797227b839f21cb8bf0a1
Subject of commit:
gdb: make symfile_segment_data::segment_info an std::vector
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/90/9005fbbb0023f212fcd797227b839f21cb8bf0a1/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/90/9005fbbb0023f212fcd797227b839f21cb8bf0a1//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/90/9005fbbb0023f212fcd797227b839f21cb8bf0a1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-19 17:40 [binutils-gdb] gdb: use std::vector to store segments in symfile_segment_data gdb-buildbot
@ 2020-05-19 18:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-19 18:28 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/2787
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
68b888fff3164b5e8e347d9c1ca351c366f0aac4
Subject of commit:
gdb: use std::vector to store segments in symfile_segment_data
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/68/68b888fff3164b5e8e347d9c1ca351c366f0aac4/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/68/68b888fff3164b5e8e347d9c1ca351c366f0aac4//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/68/68b888fff3164b5e8e347d9c1ca351c366f0aac4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-19 14:39 [binutils-gdb] OpenRISC BFD fixups for Glibc: gdb-buildbot
@ 2020-05-19 14:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-19 14:39 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/2785
Author:
Stafford Horne <shorne@gmail.com>
Commit tested:
7e94cf6cb018df7cc1311afb2b15e9f69adb60d9
Subject of commit:
OpenRISC BFD fixups for Glibc:
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7e/7e94cf6cb018df7cc1311afb2b15e9f69adb60d9/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/7e/7e94cf6cb018df7cc1311afb2b15e9f69adb60d9//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/7e/7e94cf6cb018df7cc1311afb2b15e9f69adb60d9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-19 4:37 [binutils-gdb] Use bfd_get_filename throughout bfd gdb-buildbot
@ 2020-05-19 4:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-19 4:37 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/2781
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
765cf5f623dbc2de8c8791bce9a29fcc3492436c
Subject of commit:
Use bfd_get_filename throughout bfd
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/76/765cf5f623dbc2de8c8791bce9a29fcc3492436c/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/76/765cf5f623dbc2de8c8791bce9a29fcc3492436c//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/76/765cf5f623dbc2de8c8791bce9a29fcc3492436c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-19 1:45 [binutils-gdb] win32 typo fix gdb-buildbot
@ 2020-05-19 2:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-19 2:05 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/2780
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
39a1432c09fd0242a0c832b0db04b6a71adea254
Subject of commit:
win32 typo fix
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/39/39a1432c09fd0242a0c832b0db04b6a71adea254/
*** Diff to previous build ***
==============================================
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
==============================================
*** 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/39/39a1432c09fd0242a0c832b0db04b6a71adea254//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/39/39a1432c09fd0242a0c832b0db04b6a71adea254//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-13 7:16 [binutils-gdb] [gdb/testsuite] Add xfails for PR gcc/90232 gdb-buildbot
@ 2020-05-18 14:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-18 14:30 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/2778
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
6e4e3fe1b6d68bde1f4e022bd0675fe36420e976
Subject of commit:
[gdb/testsuite] Add xfails for PR gcc/90232
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6e/6e4e3fe1b6d68bde1f4e022bd0675fe36420e976/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/6e/6e4e3fe1b6d68bde1f4e022bd0675fe36420e976//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/6e/6e4e3fe1b6d68bde1f4e022bd0675fe36420e976//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-11 23:30 [binutils-gdb] Fix array pretty formatter gdb-buildbot
@ 2020-05-18 12:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-18 12:07 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/2777
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
d642b6920b1a697da2e8fa2326cb773612a87f3f
Subject of commit:
Fix array pretty formatter
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d6/d642b6920b1a697da2e8fa2326cb773612a87f3f/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option array_indexes=True, pretty_arrays=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_c: set print array on: an_array_with_repetition: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option array_indexes=True, pretty_arrays=True
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array: str
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition with option pretty_arrays: pretty_arrays=true
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition: no opts
PASS -> FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: set print array on: an_array_with_repetition: str
==============================================
*** 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/d6/d642b6920b1a697da2e8fa2326cb773612a87f3f//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/d6/d642b6920b1a697da2e8fa2326cb773612a87f3f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-11 19:35 [binutils-gdb] Add definitions of system calls to catch in native NetBSD targets gdb-buildbot
@ 2020-05-18 7:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-18 7:20 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/2775
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
4498ef4f8b61f396472a12aea3aa84985714b7b3
Subject of commit:
Add definitions of system calls to catch in native NetBSD targets
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/4498ef4f8b61f396472a12aea3aa84985714b7b3/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/4498ef4f8b61f396472a12aea3aa84985714b7b3//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/44/4498ef4f8b61f396472a12aea3aa84985714b7b3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-11 15:36 [binutils-gdb] Allow Python commands to be in class_tui gdb-buildbot
@ 2020-05-18 2:21 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-18 2:21 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/2773
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
2b2fbab8eff221506975a7c8d00ea92d47de915e
Subject of commit:
Allow Python commands to be in class_tui
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2b/2b2fbab8eff221506975a7c8d00ea92d47de915e/
*** 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-extended-gdbserver-m64/2b/2b2fbab8eff221506975a7c8d00ea92d47de915e//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/2b/2b2fbab8eff221506975a7c8d00ea92d47de915e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-11 13:36 [binutils-gdb] gdb: Fix toplevel types with -fdebug-types-section gdb-buildbot
@ 2020-05-17 23:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-17 23:58 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/2772
Author:
Mark Williams <mark@myosotissp.com>
Commit tested:
770479f223ecd1920dd3cc683b05b24af25c4613
Subject of commit:
gdb: Fix toplevel types with -fdebug-types-section
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/77/770479f223ecd1920dd3cc683b05b24af25c4613/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/77/770479f223ecd1920dd3cc683b05b24af25c4613//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/770479f223ecd1920dd3cc683b05b24af25c4613//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-11 8:05 [binutils-gdb] Fix typo (thead -> thread) gdb-buildbot
@ 2020-05-17 16:48 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-17 16:48 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/2769
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
32d1f47a126567f24be18e7cadf5d2490968c986
Subject of commit:
Fix typo (thead -> thread)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/32/32d1f47a126567f24be18e7cadf5d2490968c986/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/32/32d1f47a126567f24be18e7cadf5d2490968c986//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/32/32d1f47a126567f24be18e7cadf5d2490968c986//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-11 0:22 [binutils-gdb] [gdb/symtab] Handle struct decl with DW_AT_signature gdb-buildbot
@ 2020-05-17 7:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-17 7:15 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/2765
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
15cd93d05e8e84644acc8bbeaa3d5f4280cc5159
Subject of commit:
[gdb/symtab] Handle struct decl with DW_AT_signature
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/15/15cd93d05e8e84644acc8bbeaa3d5f4280cc5159/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/15/15cd93d05e8e84644acc8bbeaa3d5f4280cc5159//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/15/15cd93d05e8e84644acc8bbeaa3d5f4280cc5159//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-10 16:17 [binutils-gdb] gdbsupport: include cstdlib in common-defs.h gdb-buildbot
@ 2020-05-16 21:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-16 21:41 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/2761
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
ff8885c3be6f42ed90a7b0ec0028fad26861cd94
Subject of commit:
gdbsupport: include cstdlib in common-defs.h
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ff/ff8885c3be6f42ed90a7b0ec0028fad26861cd94/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ff/ff8885c3be6f42ed90a7b0ec0028fad26861cd94//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/ff/ff8885c3be6f42ed90a7b0ec0028fad26861cd94//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-10 9:54 [binutils-gdb] Fix comments and whitespace in lookup_cmd_composition gdb-buildbot
@ 2020-05-16 14:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-16 14:30 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/2758
Author:
Philippe Waroquiers <philippe.waroquiers@skynet.be>
Commit tested:
bc3609fd3891c1cc0007eccd74bca98aabc03996
Subject of commit:
Fix comments and whitespace in lookup_cmd_composition
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bc/bc3609fd3891c1cc0007eccd74bca98aabc03996/
*** 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/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/Ubuntu-Aarch64-native-extended-gdbserver-m64/bc/bc3609fd3891c1cc0007eccd74bca98aabc03996//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/bc/bc3609fd3891c1cc0007eccd74bca98aabc03996//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-09 20:25 [binutils-gdb] [gdb/testsuite] Add target board debug-types gdb-buildbot
@ 2020-05-16 4:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-16 4:52 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/2755
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
d472f0fbaac80ed6363f26c3f417b9eee7d5e7fc
Subject of commit:
[gdb/testsuite] Add target board debug-types
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d4/d472f0fbaac80ed6363f26c3f417b9eee7d5e7fc/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/collection.exp: setting breakpoint at begin
new FAIL: 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/d4/d472f0fbaac80ed6363f26c3f417b9eee7d5e7fc//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/d4/d472f0fbaac80ed6363f26c3f417b9eee7d5e7fc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-09 16:53 [binutils-gdb] gdb/testsuite: Remove build paths from test names gdb-buildbot
@ 2020-05-16 1:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-16 1:50 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/2753
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
8d840e05dc21b67290440bfd449b9bf272346d47
Subject of commit:
gdb/testsuite: Remove build paths from test names
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8d/8d840e05dc21b67290440bfd449b9bf272346d47/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/8d/8d840e05dc21b67290440bfd449b9bf272346d47//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/8d/8d840e05dc21b67290440bfd449b9bf272346d47//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-09 10:04 [binutils-gdb] Don't call compute_and_set_names for partial symbols gdb-buildbot
@ 2020-05-15 16:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-15 16:03 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/2749
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
f049a313fcad4d51a55b6e635612c98e1a72b8a8
Subject of commit:
Don't call compute_and_set_names for partial symbols
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f0/f049a313fcad4d51a55b6e635612c98e1a72b8a8/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f0/f049a313fcad4d51a55b6e635612c98e1a72b8a8//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/f0/f049a313fcad4d51a55b6e635612c98e1a72b8a8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-09 6:26 [binutils-gdb] Introduce new add_psymbol_to_list overload gdb-buildbot
@ 2020-05-15 11:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-15 11:16 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/2747
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
2467f4f6a533a28047e0b45ce716b9b1f9f72a09
Subject of commit:
Introduce new add_psymbol_to_list overload
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/24/2467f4f6a533a28047e0b45ce716b9b1f9f72a09/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
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/24/2467f4f6a533a28047e0b45ce716b9b1f9f72a09//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/24/2467f4f6a533a28047e0b45ce716b9b1f9f72a09//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-09 4:47 [binutils-gdb] Add attribute::value_as_string method gdb-buildbot
@ 2020-05-15 8:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-15 8:52 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/2746
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
e61108c92d4bc4021ab89671612308c01b18e15d
Subject of commit:
Add attribute::value_as_string method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e6/e61108c92d4bc4021ab89671612308c01b18e15d/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e6/e61108c92d4bc4021ab89671612308c01b18e15d//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/e6/e61108c92d4bc4021ab89671612308c01b18e15d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-09 0:25 [binutils-gdb] Move the rust "{" hack gdb-buildbot
@ 2020-05-15 4:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-15 4:05 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/2744
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
787de330ee1471389cad1975eae65e566ad00448
Subject of commit:
Move the rust "{" hack
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/78/787de330ee1471389cad1975eae65e566ad00448/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================
*** 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/78/787de330ee1471389cad1975eae65e566ad00448//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/78/787de330ee1471389cad1975eae65e566ad00448//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-08 22:23 [binutils-gdb] Convert symbol_set_demangled_name to a method gdb-buildbot
@ 2020-05-15 1:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-15 1:42 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/2743
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
ff985671077a60f82e3cd8bcceda3efa0f3fabe6
Subject of commit:
Convert symbol_set_demangled_name to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ff/ff985671077a60f82e3cd8bcceda3efa0f3fabe6/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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
==============================================
*** 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/ff/ff985671077a60f82e3cd8bcceda3efa0f3fabe6//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/ff/ff985671077a60f82e3cd8bcceda3efa0f3fabe6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-08 20:06 [binutils-gdb] [gdb/testsuite] Fix language in dw2-bad-mips-linkage-name.exp gdb-buildbot
@ 2020-05-14 23:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-14 23:18 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/2742
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
7cf288744fdd238bbab079a53584f76181d44218
Subject of commit:
[gdb/testsuite] Fix language in dw2-bad-mips-linkage-name.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7c/7cf288744fdd238bbab079a53584f76181d44218/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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-extended-gdbserver-m64/7c/7cf288744fdd238bbab079a53584f76181d44218//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/7c/7cf288744fdd238bbab079a53584f76181d44218//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-08 17:35 [binutils-gdb] Update test cases that work with minimal encodings gdb-buildbot
@ 2020-05-14 20:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-14 20:55 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/2741
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
dac2fef7cfaf007123b521a70864d4dde3d09410
Subject of commit:
Update test cases that work with minimal encodings
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/da/dac2fef7cfaf007123b521a70864d4dde3d09410/
*** Diff to previous build ***
==============================================
new KFAIL: gdb.ada/funcall_ref.exp: scenario=minimal: ptype get
FAIL -> KFAIL: gdb.ada/packed_tagged.exp: scenario=minimal: print x
FAIL -> KFAIL: gdb.ada/packed_tagged.exp: scenario=minimal: ptype x
==============================================
*** 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/da/dac2fef7cfaf007123b521a70864d4dde3d09410//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/da/dac2fef7cfaf007123b521a70864d4dde3d09410//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-08 15:48 [binutils-gdb] Add Python support for dynamic types gdb-buildbot
@ 2020-05-14 18:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-14 18:31 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/2740
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
1acda8039ba681e88416a7da6a6e3abdcae6b86b
Subject of commit:
Add Python support for dynamic types
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1a/1acda8039ba681e88416a7da6a6e3abdcae6b86b/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/1a/1acda8039ba681e88416a7da6a6e3abdcae6b86b//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/1a/1acda8039ba681e88416a7da6a6e3abdcae6b86b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-08 13:32 [binutils-gdb] Add tests for Ada changes gdb-buildbot
@ 2020-05-14 16:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-14 16:07 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/2739
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
adfb981595c1ea12736b6d3c4686973040f171ff
Subject of commit:
Add tests for Ada changes
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ad/adfb981595c1ea12736b6d3c4686973040f171ff/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/packed_tagged.exp: scenario=minimal: print x
new FAIL: gdb.ada/packed_tagged.exp: scenario=minimal: ptype x
==============================================
*** 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/ad/adfb981595c1ea12736b6d3c4686973040f171ff//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/ad/adfb981595c1ea12736b6d3c4686973040f171ff//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-08 11:53 [binutils-gdb] Update Ada ptype support for dynamic types gdb-buildbot
@ 2020-05-14 13:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-14 13:42 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/2738
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
d656f129ebc7b96db96244d0206fc7fb9af85a65
Subject of commit:
Update Ada ptype support for dynamic types
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d6/d656f129ebc7b96db96244d0206fc7fb9af85a65/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/d6/d656f129ebc7b96db96244d0206fc7fb9af85a65//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/d6/d656f129ebc7b96db96244d0206fc7fb9af85a65//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-08 0:23 [binutils-gdb] Add new variant part code gdb-buildbot
@ 2020-05-13 23:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-13 23:23 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/2732
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
ef83a141a291474f1364d6c64ee7a207b96b8e19
Subject of commit:
Add new variant part code
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/ef83a141a291474f1364d6c64ee7a207b96b8e19/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/ef83a141a291474f1364d6c64ee7a207b96b8e19//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/ef/ef83a141a291474f1364d6c64ee7a207b96b8e19//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-07 22:22 [binutils-gdb] Rename "variant" to "ppc_variant" gdb-buildbot
@ 2020-05-13 20:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-13 20:59 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/2731
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
675127ec647e08ceabc66ec7d3ad560d91deacad
Subject of commit:
Rename "variant" to "ppc_variant"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/67/675127ec647e08ceabc66ec7d3ad560d91deacad/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/67/675127ec647e08ceabc66ec7d3ad560d91deacad//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/67/675127ec647e08ceabc66ec7d3ad560d91deacad//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-07 6:48 [binutils-gdb] [gdb/testsuite] Compile gdb.dwarf2/dw2-error.exp quietly gdb-buildbot
@ 2020-05-13 6:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-13 6:39 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/2725
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
4e86f6e7478e40a288ec6567fa7f3b4ef0f8d516
Subject of commit:
[gdb/testsuite] Compile gdb.dwarf2/dw2-error.exp quietly
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4e/4e86f6e7478e40a288ec6567fa7f3b4ef0f8d516/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/4e/4e86f6e7478e40a288ec6567fa7f3b4ef0f8d516//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/4e/4e86f6e7478e40a288ec6567fa7f3b4ef0f8d516//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-07 5:17 [binutils-gdb] [gdb/testsuite] Reduce errors after gdb exit in default_gdb_start gdb-buildbot
@ 2020-05-13 4:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-13 4:16 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/2724
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
2016d3e60f871ea77fb089b5bc7bcfacffab1eab
Subject of commit:
[gdb/testsuite] Reduce errors after gdb exit in default_gdb_start
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/20/2016d3e60f871ea77fb089b5bc7bcfacffab1eab/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================
*** 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/20/2016d3e60f871ea77fb089b5bc7bcfacffab1eab//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/20/2016d3e60f871ea77fb089b5bc7bcfacffab1eab//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-07 0:19 [binutils-gdb] Fix infinite loop in is_linked_with_cygwin_dll gdb-buildbot
@ 2020-05-12 23:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-12 23:28 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/2722
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
29514b87281c438543e4fc6ddda245dc194d5677
Subject of commit:
Fix infinite loop in is_linked_with_cygwin_dll
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/29/29514b87281c438543e4fc6ddda245dc194d5677/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/29/29514b87281c438543e4fc6ddda245dc194d5677//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/29/29514b87281c438543e4fc6ddda245dc194d5677//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-06 21:01 [binutils-gdb] Fix inline frame unwinding breakage gdb-buildbot
@ 2020-05-12 21:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-12 21:05 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/2721
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
5939967b355ba6a940887d19847b7893a4506067
Subject of commit:
Fix inline frame unwinding breakage
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/59/5939967b355ba6a940887d19847b7893a4506067/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/59/5939967b355ba6a940887d19847b7893a4506067//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/59/5939967b355ba6a940887d19847b7893a4506067//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-06 15:25 [binutils-gdb] [gdb/symtab] Prefer def over decl (inter-CU case) gdb-buildbot
@ 2020-05-12 16:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-12 16:23 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/2719
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
de82891ce5b6d2c8109f512cd0732325f4cd0557
Subject of commit:
[gdb/symtab] Prefer def over decl (inter-CU case)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/de/de82891ce5b6d2c8109f512cd0732325f4cd0557/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/de/de82891ce5b6d2c8109f512cd0732325f4cd0557//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/de/de82891ce5b6d2c8109f512cd0732325f4cd0557//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-06 9:55 [binutils-gdb] Remove iterate_over_inferiors gdb-buildbot
@ 2020-05-12 11:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-12 11:47 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/2717
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
740480b88afd4f2b01d117525f534ddce28530f3
Subject of commit:
Remove iterate_over_inferiors
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/74/740480b88afd4f2b01d117525f534ddce28530f3/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/74/740480b88afd4f2b01d117525f534ddce28530f3//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/74/740480b88afd4f2b01d117525f534ddce28530f3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-06 4:23 [binutils-gdb] [gdb/testsuite] Skip gdb.base/readnever.exp with target board readnow gdb-buildbot
@ 2020-05-12 7:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-12 7:10 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/2715
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
96038148d0e9f7dc89284310d065e27a3fa375f2
Subject of commit:
[gdb/testsuite] Skip gdb.base/readnever.exp with target board readnow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/96/96038148d0e9f7dc89284310d065e27a3fa375f2/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/96/96038148d0e9f7dc89284310d065e27a3fa375f2//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/96/96038148d0e9f7dc89284310d065e27a3fa375f2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-06 1:50 [binutils-gdb] [gdb/symtab] Fix disassembly of non-contiguous functions gdb-buildbot
@ 2020-05-12 4:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-12 4:52 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/2714
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
ae3ab1f067b5ca9af33043d772f9f97d92fdd44c
Subject of commit:
[gdb/symtab] Fix disassembly of non-contiguous functions
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ae/ae3ab1f067b5ca9af33043d772f9f97d92fdd44c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ae/ae3ab1f067b5ca9af33043d772f9f97d92fdd44c//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/ae/ae3ab1f067b5ca9af33043d772f9f97d92fdd44c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-05 22:49 [binutils-gdb] xtensa: fix PR ld/25861 gdb-buildbot
@ 2020-05-12 2:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-12 2:34 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/2713
Author:
Max Filippov <jcmvbkbc@gmail.com>
Commit tested:
30ce8e47fad9b057b6d7af9e1d43061126d34d20
Subject of commit:
xtensa: fix PR ld/25861
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/30/30ce8e47fad9b057b6d7af9e1d43061126d34d20/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================
*** 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/30/30ce8e47fad9b057b6d7af9e1d43061126d34d20//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/30/30ce8e47fad9b057b6d7af9e1d43061126d34d20//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-05 19:06 [binutils-gdb] [gdb/testsuite] Fix .debug_ranges in gdb.mi/dw2-ref-missing-frame-func.c gdb-buildbot
@ 2020-05-11 21:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-11 21:54 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/2711
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
54ac3df1adbf7b4b3470a8df08caa0aea4c89616
Subject of commit:
[gdb/testsuite] Fix .debug_ranges in gdb.mi/dw2-ref-missing-frame-func.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/54/54ac3df1adbf7b4b3470a8df08caa0aea4c89616/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/54/54ac3df1adbf7b4b3470a8df08caa0aea4c89616//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/54/54ac3df1adbf7b4b3470a8df08caa0aea4c89616//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-05 16:47 [binutils-gdb] [gdb/testsuite] Fix .debug_aranges in gdb.dlang/watch-loc.c gdb-buildbot
@ 2020-05-11 19:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-11 19:30 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/2710
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
714534e1b88608f92b6946d8e5a24ea51a40e363
Subject of commit:
[gdb/testsuite] Fix .debug_aranges in gdb.dlang/watch-loc.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/71/714534e1b88608f92b6946d8e5a24ea51a40e363/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/71/714534e1b88608f92b6946d8e5a24ea51a40e363//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/71/714534e1b88608f92b6946d8e5a24ea51a40e363//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-05 13:09 [binutils-gdb] [gdb/symtab] Find filename in shared psymtab gdb-buildbot
@ 2020-05-11 14:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-11 14:54 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/2708
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
eea9e35758138f83e8c44e0e5a5e47e351f8f31a
Subject of commit:
[gdb/symtab] Find filename in shared psymtab
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ee/eea9e35758138f83e8c44e0e5a5e47e351f8f31a/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ee/eea9e35758138f83e8c44e0e5a5e47e351f8f31a//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/ee/eea9e35758138f83e8c44e0e5a5e47e351f8f31a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-05 6:50 [binutils-gdb] gdb/infrun: switch the context before 'displaced_step_restore' gdb-buildbot
@ 2020-05-11 7:48 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-11 7:48 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/2705
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
d43b7a2d5718f303a9e284f0d14219f05fbcfa17
Subject of commit:
gdb/infrun: switch the context before 'displaced_step_restore'
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d4/d43b7a2d5718f303a9e284f0d14219f05fbcfa17/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/d4/d43b7a2d5718f303a9e284f0d14219f05fbcfa17//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/d4/d43b7a2d5718f303a9e284f0d14219f05fbcfa17//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-05 5:03 [binutils-gdb] Disallow PC relative for CMPI on MC68000/10 gdb-buildbot
@ 2020-05-11 5:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-11 5:30 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/2704
Author:
Andreas Schwab <schwab@linux-m68k.org>
Commit tested:
bb2a1453479dfa2589f3b62853d4e1cf60825e98
Subject of commit:
Disallow PC relative for CMPI on MC68000/10
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bb/bb2a1453479dfa2589f3b62853d4e1cf60825e98/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/bb/bb2a1453479dfa2589f3b62853d4e1cf60825e98//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/bb/bb2a1453479dfa2589f3b62853d4e1cf60825e98//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-05 0:46 [binutils-gdb] gdb, btrace: make record-btrace per-inferior gdb-buildbot
@ 2020-05-11 0:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-11 0:54 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/2702
Author:
Markus Metzger <markus.t.metzger@intel.com>
Commit tested:
d89edf9b811ac3c5643b8a866c238a93f35a5e6c
Subject of commit:
gdb, btrace: make record-btrace per-inferior
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d8/d89edf9b811ac3c5643b8a866c238a93f35a5e6c/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/d8/d89edf9b811ac3c5643b8a866c238a93f35a5e6c//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/d8/d89edf9b811ac3c5643b8a866c238a93f35a5e6c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-04 22:50 [binutils-gdb] gdb, btrace: diagnose double and failed enable gdb-buildbot
@ 2020-05-10 22:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-10 22:36 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/2701
Author:
Markus Metzger <markus.t.metzger@intel.com>
Commit tested:
5897fd4994effd21cbe951e6d2c417097adea162
Subject of commit:
gdb, btrace: diagnose double and failed enable
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/58/5897fd4994effd21cbe951e6d2c417097adea162/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: 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-extended-gdbserver-m64/58/5897fd4994effd21cbe951e6d2c417097adea162//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/58/5897fd4994effd21cbe951e6d2c417097adea162//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-04 20:58 [binutils-gdb] gdb, btrace: forward fetch_registers for unknown threads gdb-buildbot
@ 2020-05-10 20:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-10 20:18 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/2700
Author:
Markus Metzger <markus.t.metzger@intel.com>
Commit tested:
1a476b6d68f338e6daa0345501c0cf0fe97dd8f3
Subject of commit:
gdb, btrace: forward fetch_registers for unknown threads
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1a/1a476b6d68f338e6daa0345501c0cf0fe97dd8f3/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/1a/1a476b6d68f338e6daa0345501c0cf0fe97dd8f3//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/1a/1a476b6d68f338e6daa0345501c0cf0fe97dd8f3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-04 17:56 [binutils-gdb] [gdb] Fix hang after ext sigkill gdb-buildbot
@ 2020-05-10 18:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-10 18:04 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/2699
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
4778a5f87d253399083565b4919816f541ebe414
Subject of commit:
[gdb] Fix hang after ext sigkill
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/47/4778a5f87d253399083565b4919816f541ebe414/
*** Diff to previous build ***
==============================================
new FAIL: gdb.threads/killed-outside.exp: prompt after first continue
==============================================
*** 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/47/4778a5f87d253399083565b4919816f541ebe414//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/47/4778a5f87d253399083565b4919816f541ebe414//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-04 16:01 [binutils-gdb] [gdb/testsuite] share jit-protocol.h by all jit tests gdb-buildbot
@ 2020-05-10 15:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-10 15:46 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/2698
Author:
Mihails Strasuns <mihails.strasuns@intel.com>
Commit tested:
946422b6a113063b9bbd72832ed13d4694134597
Subject of commit:
[gdb/testsuite] share jit-protocol.h by all jit tests
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/94/946422b6a113063b9bbd72832ed13d4694134597/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================
*** 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/94/946422b6a113063b9bbd72832ed13d4694134597//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/94/946422b6a113063b9bbd72832ed13d4694134597//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-04 14:05 [binutils-gdb] [gdb/testsuite] structured rename of jit test files gdb-buildbot
@ 2020-05-10 13:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-10 13:28 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/2697
Author:
Mihails Strasuns <mihails.strasuns@intel.com>
Commit tested:
922a7c7c5d4040f9e4ab75a059b9ca33f45ab952
Subject of commit:
[gdb/testsuite] structured rename of jit test files
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/92/922a7c7c5d4040f9e4ab75a059b9ca33f45ab952/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/92/922a7c7c5d4040f9e4ab75a059b9ca33f45ab952//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/92/922a7c7c5d4040f9e4ab75a059b9ca33f45ab952//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-04 12:09 [binutils-gdb] [gdb/testsuite] allow more registers in gdb.base/jit-reader.exp gdb-buildbot
@ 2020-05-10 11:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-10 11:10 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/2696
Author:
Mihails Strasuns <mihails.strasuns@intel.com>
Commit tested:
f49c464f933172bae5685c2fb51b9e220902146c
Subject of commit:
[gdb/testsuite] allow more registers in gdb.base/jit-reader.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f4/f49c464f933172bae5685c2fb51b9e220902146c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================
*** 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/f4/f49c464f933172bae5685c2fb51b9e220902146c//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/f4/f49c464f933172bae5685c2fb51b9e220902146c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-04 10:04 [binutils-gdb] elf: Strip zero-sized dynamic sections gdb-buildbot
@ 2020-05-10 8:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-10 8:52 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/2695
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
6f6fd151cbf226bbaa66e44977f57b7c6dc33d89
Subject of commit:
elf: Strip zero-sized dynamic sections
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6f/6f6fd151cbf226bbaa66e44977f57b7c6dc33d89/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/6f/6f6fd151cbf226bbaa66e44977f57b7c6dc33d89//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/6f/6f6fd151cbf226bbaa66e44977f57b7c6dc33d89//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-04 6:27 [binutils-gdb] Updated Serbian translation for the BFD directory gdb-buildbot
@ 2020-05-10 4:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-10 4:16 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/2693
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
e04f33c09f85b936d544c78b1fa6b1134dfbcecd
Subject of commit:
Updated Serbian translation for the BFD directory.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e0/e04f33c09f85b936d544c78b1fa6b1134dfbcecd/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e0/e04f33c09f85b936d544c78b1fa6b1134dfbcecd//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/e0/e04f33c09f85b936d544c78b1fa6b1134dfbcecd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-04 4:32 [binutils-gdb] Since the pdp11-aout target does not support gdb, gdbserver or gprof these should be excluded in configure gdb-buildbot
@ 2020-05-09 23:45 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-09 23:45 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/2692
Author:
Stephen Casner <casner@acm.org>
Commit tested:
11104e4297b33e642bd509a07a3313210a0991aa
Subject of commit:
Since the pdp11-aout target does not support gdb, gdbserver or gprof these should be excluded in configure.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/11/11104e4297b33e642bd509a07a3313210a0991aa/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/11/11104e4297b33e642bd509a07a3313210a0991aa//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/11/11104e4297b33e642bd509a07a3313210a0991aa//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-04 2:41 [binutils-gdb] Remove SH-5 remnants gdb-buildbot
@ 2020-05-09 20:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-09 20:13 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/2690
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
fad3d2c1b268735fe6bfa280a8e4e260fb0196a7
Subject of commit:
Remove SH-5 remnants
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fa/fad3d2c1b268735fe6bfa280a8e4e260fb0196a7/
*** 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/fa/fad3d2c1b268735fe6bfa280a8e4e260fb0196a7//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/fa/fad3d2c1b268735fe6bfa280a8e4e260fb0196a7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-04 0:12 [binutils-gdb] Mark move constructors as "noexcept" gdb-buildbot
@ 2020-05-09 16:48 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-09 16:48 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/2689
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
0fa7617d84da8b809b14e1e2ee67474526c62021
Subject of commit:
Mark move constructors as "noexcept"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0f/0fa7617d84da8b809b14e1e2ee67474526c62021/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/0f/0fa7617d84da8b809b14e1e2ee67474526c62021//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/0f/0fa7617d84da8b809b14e1e2ee67474526c62021//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-03 22:33 [binutils-gdb] Use support_nested_function_tests in gdb.base/nested-subp1.exp et al gdb-buildbot
@ 2020-05-09 14:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-09 14:28 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/2688
Author:
Gary Benson <gbenson@redhat.com>
Commit tested:
9b2c992cfa4e9911d3b54c21ced179aa4928c422
Subject of commit:
Use support_nested_function_tests in gdb.base/nested-subp1.exp et al
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9b/9b2c992cfa4e9911d3b54c21ced179aa4928c422/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/9b/9b2c992cfa4e9911d3b54c21ced179aa4928c422//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/9b/9b2c992cfa4e9911d3b54c21ced179aa4928c422//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-03 20:34 [binutils-gdb] Disable nested function tests for clang gdb-buildbot
@ 2020-05-09 11:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-09 11:44 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/2687
Author:
Gary Benson <gbenson@redhat.com>
Commit tested:
b5d1d6f7b70a0086a915c0d04c28a4db91161057
Subject of commit:
Disable nested function tests for clang
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b5/b5d1d6f7b70a0086a915c0d04c28a4db91161057/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/b5/b5d1d6f7b70a0086a915c0d04c28a4db91161057//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/b5/b5d1d6f7b70a0086a915c0d04c28a4db91161057//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-03 18:02 [binutils-gdb] Add myself to gdb/MAINTAINERS gdb-buildbot
@ 2020-05-09 9:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-09 9:26 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/2686
Author:
Mihails Strasuns <mihails.strasuns@intel.com>
Commit tested:
ad23bda0db2b2bee506147701424b2ebfef8f55a
Subject of commit:
Add myself to gdb/MAINTAINERS
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ad/ad23bda0db2b2bee506147701424b2ebfef8f55a/
*** Diff to previous build ***
==============================================
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/ad/ad23bda0db2b2bee506147701424b2ebfef8f55a//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/ad/ad23bda0db2b2bee506147701424b2ebfef8f55a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-03 16:28 [binutils-gdb] Fix compilation error with clang in gdb/testsuite/gdb.cp/exception.cc gdb-buildbot
@ 2020-05-09 7:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-09 7:08 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/2685
Author:
Gary Benson <gbenson@redhat.com>
Commit tested:
25230285442ed10ec0f65d770d0a188ff8680b8f
Subject of commit:
Fix compilation error with clang in gdb/testsuite/gdb.cp/exception.cc
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/25/25230285442ed10ec0f65d770d0a188ff8680b8f/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/25/25230285442ed10ec0f65d770d0a188ff8680b8f//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/25/25230285442ed10ec0f65d770d0a188ff8680b8f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-03 12:31 [binutils-gdb] Fix compilation error with clang in gdb/testsuite/gdb.base/jit-main.c gdb-buildbot
@ 2020-05-09 2:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-09 2:36 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/2683
Author:
Gary Benson <gbenson@redhat.com>
Commit tested:
e0c45f305525bbc3fd95024e4517a52d1c371868
Subject of commit:
Fix compilation error with clang in gdb/testsuite/gdb.base/jit-main.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e0/e0c45f305525bbc3fd95024e4517a52d1c371868/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e0/e0c45f305525bbc3fd95024e4517a52d1c371868//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/e0/e0c45f305525bbc3fd95024e4517a52d1c371868//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-03 8:45 [binutils-gdb] [AArch64, Binutils] Add missing TSB instruction gdb-buildbot
@ 2020-05-08 21:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-08 21:59 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/2681
Author:
Sudakshina Das <sudi.das@arm.com>
Commit tested:
c2e5c986b3825c16a578e5bf84aa412eec276dc7
Subject of commit:
[AArch64, Binutils] Add missing TSB instruction
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c2/c2e5c986b3825c16a578e5bf84aa412eec276dc7/
*** 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-extended-gdbserver-m64/c2/c2e5c986b3825c16a578e5bf84aa412eec276dc7//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/c2/c2e5c986b3825c16a578e5bf84aa412eec276dc7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-03 4:18 [binutils-gdb] PowerPC64: remove empty .rela.dyn (.rela.branch_lt) gdb-buildbot
@ 2020-05-08 16:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-08 16:02 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/2679
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
2efec98b28bbc89fc8e062709c7e28cc8a56ee40
Subject of commit:
PowerPC64: remove empty .rela.dyn (.rela.branch_lt)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2e/2efec98b28bbc89fc8e062709c7e28cc8a56ee40/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2e/2efec98b28bbc89fc8e062709c7e28cc8a56ee40//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/2e/2efec98b28bbc89fc8e062709c7e28cc8a56ee40//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-02 19:47 [binutils-gdb] Restore some windows-tdep.c code gdb-buildbot
@ 2020-05-08 3:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-08 3:00 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/2677
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
45e1f031e823abf0fb233b3da6da099417e65bd8
Subject of commit:
Restore some windows-tdep.c code
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/45/45e1f031e823abf0fb233b3da6da099417e65bd8/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/45/45e1f031e823abf0fb233b3da6da099417e65bd8//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/45/45e1f031e823abf0fb233b3da6da099417e65bd8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-02 13:45 [binutils-gdb] Fix gdb.base/attach-twice.c build on NetBSD gdb-buildbot
@ 2020-05-07 20:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-07 20:05 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/2674
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
4ddfec930ca5bd57800ebc71daef66f685a6de4d
Subject of commit:
Fix gdb.base/attach-twice.c build on NetBSD
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4d/4ddfec930ca5bd57800ebc71daef66f685a6de4d/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/4d/4ddfec930ca5bd57800ebc71daef66f685a6de4d//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/4d/4ddfec930ca5bd57800ebc71daef66f685a6de4d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-02 11:46 [binutils-gdb] Fix the build of fork-running-state.c on NetBSD gdb-buildbot
@ 2020-05-07 17:45 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-07 17:45 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/2673
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
2bed205e44ad853f10416e970de2534554f8cf18
Subject of commit:
Fix the build of fork-running-state.c on NetBSD
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2b/2bed205e44ad853f10416e970de2534554f8cf18/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2b/2bed205e44ad853f10416e970de2534554f8cf18//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/2b/2bed205e44ad853f10416e970de2534554f8cf18//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-02 7:51 [binutils-gdb] [PATCH v2] binutils: arm: Fix disassembly of conditional VDUPs gdb-buildbot
@ 2020-05-07 11:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-07 11:52 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/2671
Author:
Fredrik Strupe <fredrik@strupe.net>
Commit tested:
e409955ddcc33743044f217a3cc0541e0e6211b7
Subject of commit:
[PATCH v2] binutils: arm: Fix disassembly of conditional VDUPs.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e4/e409955ddcc33743044f217a3cc0541e0e6211b7/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e4/e409955ddcc33743044f217a3cc0541e0e6211b7//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/e4/e409955ddcc33743044f217a3cc0541e0e6211b7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-01 23:39 [binutils-gdb] gdb: is_linked_with_cygwin_dll: handle import table not at beginning of .idata section gdb-buildbot
@ 2020-05-07 2:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-07 2:37 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/2667
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
00ac85d3751b763155adb4e9d15dd134399b4e77
Subject of commit:
gdb: is_linked_with_cygwin_dll: handle import table not at beginning of .idata section
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/00/00ac85d3751b763155adb4e9d15dd134399b4e77/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/00/00ac85d3751b763155adb4e9d15dd134399b4e77//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/00/00ac85d3751b763155adb4e9d15dd134399b4e77//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-01 21:13 [binutils-gdb] Stop the MIPS assembler from accepting ifunc symbols gdb-buildbot
@ 2020-05-07 0:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-07 0:07 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/2666
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
8e4979ac1ea78147ecbcbf81af5e946873dda079
Subject of commit:
Stop the MIPS assembler from accepting ifunc symbols.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8e/8e4979ac1ea78147ecbcbf81af5e946873dda079/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/killed.exp: run program to completion
==============================================
*** 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/8e/8e4979ac1ea78147ecbcbf81af5e946873dda079//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/8e/8e4979ac1ea78147ecbcbf81af5e946873dda079//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-01 19:18 [binutils-gdb] Refactor delete_program_space as a destructor gdb-buildbot
@ 2020-05-06 21:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-06 21:08 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/2665
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
381ce63f2f010ef5c246be720ef177cf46a19179
Subject of commit:
Refactor delete_program_space as a destructor
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/38/381ce63f2f010ef5c246be720ef177cf46a19179/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/38/381ce63f2f010ef5c246be720ef177cf46a19179//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/38/381ce63f2f010ef5c246be720ef177cf46a19179//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-01 15:23 [binutils-gdb] [gdb/symtab] Handle PU without import in "save gdb-index" gdb-buildbot
@ 2020-05-06 16:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-06 16:31 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/2663
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
efba5c2319d6c25393e5cce9a2d30bbc0cb53123
Subject of commit:
[gdb/symtab] Handle PU without import in "save gdb-index"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/efba5c2319d6c25393e5cce9a2d30bbc0cb53123/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/ef/efba5c2319d6c25393e5cce9a2d30bbc0cb53123//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/ef/efba5c2319d6c25393e5cce9a2d30bbc0cb53123//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-01 10:59 [binutils-gdb] PR25827, Null pointer dereferencing in scan_unit_for_symbols gdb-buildbot
@ 2020-05-06 11:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-06 11:47 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/2661
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
aec72fda3b320c36eb99fc1c4cf95b10fc026729
Subject of commit:
PR25827, Null pointer dereferencing in scan_unit_for_symbols
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ae/aec72fda3b320c36eb99fc1c4cf95b10fc026729/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ae/aec72fda3b320c36eb99fc1c4cf95b10fc026729//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/ae/aec72fda3b320c36eb99fc1c4cf95b10fc026729//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-01 9:03 [binutils-gdb] cpu, gas, opcodes: support for eBPF JMP32 instruction class gdb-buildbot
@ 2020-05-06 9:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-06 9:14 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/2660
Author:
David Faust <david.faust@oracle.com>
Commit tested:
c54a9b56696e584c2b8c7146caac337c063f5516
Subject of commit:
cpu,gas,opcodes: support for eBPF JMP32 instruction class
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c5/c54a9b56696e584c2b8c7146caac337c063f5516/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c5/c54a9b56696e584c2b8c7146caac337c063f5516//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/c5/c54a9b56696e584c2b8c7146caac337c063f5516//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-01 3:29 [binutils-gdb] PowerPC64 GOT reloc optimisation gdb-buildbot
@ 2020-05-06 1:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-06 1:26 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/2657
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
06507dab6172582d3924a3d7dc92a9e7d4ab60ff
Subject of commit:
PowerPC64 GOT reloc optimisation
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/06/06507dab6172582d3924a3d7dc92a9e7d4ab60ff/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.reverse/insn-reverse.exp: move: si
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/06/06507dab6172582d3924a3d7dc92a9e7d4ab60ff//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/06/06507dab6172582d3924a3d7dc92a9e7d4ab60ff//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-05-01 1:49 [binutils-gdb] gdbserver: fix format string warning in win32-low.cc gdb-buildbot
@ 2020-05-05 22:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-05 22:55 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/2655
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
e2275c6ee8caa98d6526422743a97d5dd5ac040d
Subject of commit:
gdbserver: fix format string warning in win32-low.cc
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e2/e2275c6ee8caa98d6526422743a97d5dd5ac040d/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
FAIL -> UNRESOLVED: gdb.reverse/insn-reverse.exp: move: si
==============================================
*** 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/e2/e2275c6ee8caa98d6526422743a97d5dd5ac040d//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/e2/e2275c6ee8caa98d6526422743a97d5dd5ac040d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-30 23:27 [binutils-gdb] Fix OpenBSD build error gdb-buildbot
@ 2020-05-05 20:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-05 20:36 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/2654
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
c7d648090384ef01cf8ea2018bf952ed60a9677d
Subject of commit:
Fix OpenBSD build error.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c7/c7d648090384ef01cf8ea2018bf952ed60a9677d/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c7/c7d648090384ef01cf8ea2018bf952ed60a9677d//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/c7/c7d648090384ef01cf8ea2018bf952ed60a9677d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-30 21:26 [binutils-gdb] Use debug_printf in windows-nat.c gdb-buildbot
@ 2020-05-05 18:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-05 18:18 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/2653
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
ce127a96c912965e0fe24906d6083e5e9c79a92f
Subject of commit:
Use debug_printf in windows-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/ce127a96c912965e0fe24906d6083e5e9c79a92f/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/killed.exp: GDB exits after multi-threaded program exits messily
PASS -> FAIL: gdb.threads/killed.exp: run program to completion
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/ce127a96c912965e0fe24906d6083e5e9c79a92f//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/ce/ce127a96c912965e0fe24906d6083e5e9c79a92f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-30 16:00 [binutils-gdb] Better handling of realpath() failure in windows_make_so() on Cygwin gdb-buildbot
@ 2020-05-05 13:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-05 13:42 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/2651
Author:
Jon Turney <jon.turney@dronecode.org.uk>
Commit tested:
a0e9b53238c3033222c53b1654da535c0743ab6e
Subject of commit:
Better handling of realpath() failure in windows_make_so() on Cygwin
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a0/a0e9b53238c3033222c53b1654da535c0743ab6e/
*** 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/a0/a0e9b53238c3033222c53b1654da535c0743ab6e//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/a0/a0e9b53238c3033222c53b1654da535c0743ab6e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-30 15:03 [binutils-gdb] Unify the behaviour of ld.bfd and ld.gold with respect to warning about unresolved symbol references. (PR 24613) gdb-buildbot
@ 2020-05-05 11:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-05 11:24 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/2650
Author:
Fangrui Song <maskray@google.com>
Commit tested:
95a515681272fa3a79624279c1579cce14ad61c0
Subject of commit:
Unify the behaviour of ld.bfd and ld.gold with respect to warning about unresolved symbol references. (PR 24613)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/95/95a515681272fa3a79624279c1579cce14ad61c0/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/95/95a515681272fa3a79624279c1579cce14ad61c0//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/95/95a515681272fa3a79624279c1579cce14ad61c0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-30 13:14 [binutils-gdb] PR25823, Use after free in bfd_hash_lookup gdb-buildbot
@ 2020-05-05 9:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-05 9:06 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/2649
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
7ecb51549ab1ec22aba5aaf34b70323cf0b8509a
Subject of commit:
PR25823, Use after free in bfd_hash_lookup
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7e/7ecb51549ab1ec22aba5aaf34b70323cf0b8509a/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/trace-enable-disable.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/trace-enable-disable.exp: delete all breakpoints in delete_breakpoints
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/7e/7ecb51549ab1ec22aba5aaf34b70323cf0b8509a//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/7e/7ecb51549ab1ec22aba5aaf34b70323cf0b8509a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-30 10:53 [binutils-gdb] [PATCH v2 2/2] coff-go32: support extended relocations gdb-buildbot
@ 2020-05-05 6:45 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-05 6:45 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/2648
Author:
Juan Manuel Guerrero <juan.guerrero@gmx.de>
Commit tested:
f717994fe84df26ec4e4fe4104e018ece8b5b9cf
Subject of commit:
[PATCH v2 2/2] coff-go32: support extended relocations
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f7/f717994fe84df26ec4e4fe4104e018ece8b5b9cf/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach child
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach parent
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: switch to parent
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
new UNRESOLVED: gdb.trace/read-memory.exp: live: 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-native-extended-gdbserver-m64/f7/f717994fe84df26ec4e4fe4104e018ece8b5b9cf//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/f7/f717994fe84df26ec4e4fe4104e018ece8b5b9cf//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-30 2:14 [binutils-gdb] [gdb] Fix missing symtab includes gdb-buildbot
@ 2020-05-04 21:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-04 21:32 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/2644
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
194d088fb1fa6c3c341994ca247d172c3f08c2da
Subject of commit:
[gdb] Fix missing symtab includes
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/19/194d088fb1fa6c3c341994ca247d172c3f08c2da/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/19/194d088fb1fa6c3c341994ca247d172c3f08c2da//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/19/194d088fb1fa6c3c341994ca247d172c3f08c2da//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-29 23:28 [binutils-gdb] gdb/testsuite: Move helper function into lib/dwarf.exp gdb-buildbot
@ 2020-05-04 16:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-04 16:07 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/2642
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
21b0982c778bf20de6fc42e7ae7735055cdd35c5
Subject of commit:
gdb/testsuite: Move helper function into lib/dwarf.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/21/21b0982c778bf20de6fc42e7ae7735055cdd35c5/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/21/21b0982c778bf20de6fc42e7ae7735055cdd35c5//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/21/21b0982c778bf20de6fc42e7ae7735055cdd35c5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-29 20:57 [binutils-gdb] Remove gdb_fildes_t gdb-buildbot
@ 2020-05-04 13:48 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-04 13:48 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/2641
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
73944e9f6317fa826044d79a6c15ea4448270ee8
Subject of commit:
Remove gdb_fildes_t
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/73/73944e9f6317fa826044d79a6c15ea4448270ee8/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/73/73944e9f6317fa826044d79a6c15ea4448270ee8//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/73/73944e9f6317fa826044d79a6c15ea4448270ee8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-29 12:50 [binutils-gdb] Introduce async-event.[ch] gdb-buildbot
@ 2020-05-04 4:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-04 4:26 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/2636
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
93b54c8ed3644a6604c5244faddf5dae7f60a743
Subject of commit:
Introduce async-event.[ch]
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/93/93b54c8ed3644a6604c5244faddf5dae7f60a743/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/93/93b54c8ed3644a6604c5244faddf5dae7f60a743//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/93/93b54c8ed3644a6604c5244faddf5dae7f60a743//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-29 8:23 [binutils-gdb] Use warning in event-loop gdb-buildbot
@ 2020-05-03 22:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-03 22:24 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/2634
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
29f2bf4f224c7b6a02b4acc3e1c22fd776dbc013
Subject of commit:
Use warning in event-loop
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/29/29f2bf4f224c7b6a02b4acc3e1c22fd776dbc013/
*** 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/29/29f2bf4f224c7b6a02b4acc3e1c22fd776dbc013//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/29/29f2bf4f224c7b6a02b4acc3e1c22fd776dbc013//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-29 6:02 [binutils-gdb] Include <chrono> in event-loop.c gdb-buildbot
@ 2020-05-03 19:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-03 19:46 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/2633
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
98029d02d7238c75df42030b819e7961c8aacb18
Subject of commit:
Include <chrono> in event-loop.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/98/98029d02d7238c75df42030b819e7961c8aacb18/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/98/98029d02d7238c75df42030b819e7961c8aacb18//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/98/98029d02d7238c75df42030b819e7961c8aacb18//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-28 20:56 [binutils-gdb] Move start_event_loop out of event-loop.c gdb-buildbot
@ 2020-05-03 12:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-03 12:52 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/2630
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
58cf28e860429822ab0aa93a56e130c4430df396
Subject of commit:
Move start_event_loop out of event-loop.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/58/58cf28e860429822ab0aa93a56e130c4430df396/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/58/58cf28e860429822ab0aa93a56e130c4430df396//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/58/58cf28e860429822ab0aa93a56e130c4430df396//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-28 18:54 [binutils-gdb] Update my email address on MAINTAINERS gdb-buildbot
@ 2020-05-03 10:33 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-03 10:33 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/2629
Author:
Sergio Durigan Junior <sergiodj@sergiodj.net>
Commit tested:
b7f999aee35f1a40739adea8b11805ceef061c95
Subject of commit:
Update my email address on MAINTAINERS
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b7/b7f999aee35f1a40739adea8b11805ceef061c95/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/b7/b7f999aee35f1a40739adea8b11805ceef061c95//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/b7/b7f999aee35f1a40739adea8b11805ceef061c95//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-28 12:30 [binutils-gdb] Implement "info proc cmdline" for NetBSD gdb-buildbot
@ 2020-05-03 3:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-03 3:38 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/2626
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
49d1d1f53df552f0592b1cc4cc9a74db70d5ffa7
Subject of commit:
Implement "info proc cmdline" for NetBSD
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/49/49d1d1f53df552f0592b1cc4cc9a74db70d5ffa7/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/49/49d1d1f53df552f0592b1cc4cc9a74db70d5ffa7//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/49/49d1d1f53df552f0592b1cc4cc9a74db70d5ffa7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-28 11:03 [binutils-gdb] Implement "info proc cwd" for NetBSD gdb-buildbot
@ 2020-05-03 1:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-03 1:20 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/2625
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
b4848d2a7b63d6001051f39d50ca965cb4210951
Subject of commit:
Implement "info proc cwd" for NetBSD
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b4/b4848d2a7b63d6001051f39d50ca965cb4210951/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b4/b4848d2a7b63d6001051f39d50ca965cb4210951//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/b4/b4848d2a7b63d6001051f39d50ca965cb4210951//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-28 4:05 [binutils-gdb] Implement "info proc mappings" for NetBSD gdb-buildbot
@ 2020-05-02 20:45 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-02 20:45 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/2623
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
54b8cbd0e4063846349634aefa8ed1a3c0ac62ca
Subject of commit:
Implement "info proc mappings" for NetBSD
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/54/54b8cbd0e4063846349634aefa8ed1a3c0ac62ca/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/54/54b8cbd0e4063846349634aefa8ed1a3c0ac62ca//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/54/54b8cbd0e4063846349634aefa8ed1a3c0ac62ca//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-27 19:18 [binutils-gdb] gdb: fix undefined behavior reported in copy_bitwise gdb-buildbot
@ 2020-05-02 7:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-02 7:39 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/2621
Author:
Artur Shepilko <nomadbyte@gmail.com>
Commit tested:
cf83625da29d1239e97f1eb4d145f347cb741889
Subject of commit:
gdb: fix undefined behavior reported in copy_bitwise
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/cf/cf83625da29d1239e97f1eb4d145f347cb741889/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/exec_changed.exp: start second
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.base/annota1.exp: continue to printf
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/completion.exp: complete 'info registers '
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new FAIL: gdb.base/foll-exec-mode.exp: same,continue,no_infswitch: use correct executable
new FAIL: gdb.base/foll-exec-mode.exp: same,next,no_infswitch: use correct executable
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new FAIL: gdb.base/gdbinit-history.exp: GDBHISTFILE is empty: show commands
new FAIL: gdb.base/gdbinit-history.exp: load GDBHISTFILE history file: show commands
new FAIL: gdb.base/gdbinit-history.exp: load default history file: show commands
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=off: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new FAIL: gdb.opt/inline-break.exp: cmd=break: bt stopped in inline_func1
new FAIL: gdb.opt/inline-break.exp: cmd=break: continue to breakpoint: inline_func1
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: could not run to main
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: delete all breakpoints in delete_breakpoints
new FAIL: gdb.opt/inline-cmds.exp: backtrace at inlined_fn from noinline
new FAIL: gdb.opt/inline-cmds.exp: inlined_fn from noinline inlined
new FAIL: gdb.opt/inline-cmds.exp: main not inlined
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new FAIL: gdb.opt/inline-cmds.exp: noinline from outer_inline1 not inlined
new FAIL: gdb.opt/inline-cmds.exp: outer_inline1 inlined
new FAIL: gdb.opt/inline-cmds.exp: outer_inline2 inlined
new FAIL: gdb.opt/inline-cmds.exp: up from outer_inline2
new FAIL: gdb.opt/inline-cmds.exp: up to noinline
new FAIL: gdb.opt/inline-cmds.exp: up to outer_inline1
new FAIL: gdb.opt/inline-cmds.exp: up to outer_inline2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new FAIL: gdb.opt/inline-small-func.exp: info breakpoints
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-frame-inline.exp: info frame
new FAIL: gdb.python/py-frame-inline.exp: python print
new FAIL: gdb.python/py-frame-inline.exp: up
new FAIL: gdb.python/tui-window.exp: Window was updated
new FAIL: gdb.reverse/insn-reverse.exp: move: capture_command_output for info all-registers
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 0:mov x0, sp
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 10:adrp x0, 0xaaaaaaabb000
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 11:add x0, x0, #0x10
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 12:ldr w0, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 13:ldr w1, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 14:cmp w1, w0
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 15:b.lt 0xaaaaaaaaa8a8 <main+24> // b.tstop
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 16:adrp x0, 0xaaaaaaabb000
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 17:add x0, x0, #0x18
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 18:ldrsw x1, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 19:ldr x0, [x0, x1, lsl #3]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 1:ld1 {v1.8b}, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 20:blr x0
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 21:sub sp, sp, #0x30
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 22:mov w0, #0x42f60000 // #1123418112
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 23:fmov s0, w0
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 24:str s0, [sp, #4]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 2:ld1 {v2.8b, v3.8b}, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 3:ld1 {v3.8b-v5.8b}, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 4:nop
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 5:add sp, sp, #0x20
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 6:ret
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 7:ldr w0, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 8:add w0, w0, #0x1
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 9:str w0, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: reverse-stepi
new FAIL: gdb.reverse/insn-reverse.exp: move: si
new FAIL: gdb.reverse/insn-reverse.exp: move: x/i $pc
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
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/cf/cf83625da29d1239e97f1eb4d145f347cb741889//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/cf/cf83625da29d1239e97f1eb4d145f347cb741889//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-27 14:54 [binutils-gdb] Skip separate debug files when handling copy relocations gdb-buildbot
@ 2020-05-02 2:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-02 2:57 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/2619
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
3e65b3e9aff265b8db711f742ea527b4c2e36910
Subject of commit:
Skip separate debug files when handling copy relocations
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3e/3e65b3e9aff265b8db711f742ea527b4c2e36910/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/3e/3e65b3e9aff265b8db711f742ea527b4c2e36910//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/3e/3e65b3e9aff265b8db711f742ea527b4c2e36910//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-27 13:05 [binutils-gdb] Fix debugging of WOW64 processes gdb-buildbot
@ 2020-05-02 0:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-02 0:15 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/2617
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
13302e956fb7a0c700f53f16d985c9e6207e331c
Subject of commit:
Fix debugging of WOW64 processes
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/13/13302e956fb7a0c700f53f16d985c9e6207e331c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/13/13302e956fb7a0c700f53f16d985c9e6207e331c//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/13/13302e956fb7a0c700f53f16d985c9e6207e331c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-27 9:09 [binutils-gdb] [gdb/cli] Don't let python colorize strip leading newlines gdb-buildbot
@ 2020-05-01 19:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-01 19:39 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/2615
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
bdfc1e8a0b176257bfc700de755463d3aaf69849
Subject of commit:
[gdb/cli] Don't let python colorize strip leading newlines
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bd/bdfc1e8a0b176257bfc700de755463d3aaf69849/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/bd/bdfc1e8a0b176257bfc700de755463d3aaf69849//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/bd/bdfc1e8a0b176257bfc700de755463d3aaf69849//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-27 3:32 [binutils-gdb] Add SVR4 psABI specific parser for AUXV entries gdb-buildbot
@ 2020-05-01 12:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-01 12:44 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/2612
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
206c98a6503de9c78550b7e503526f59b5b2f491
Subject of commit:
Add SVR4 psABI specific parser for AUXV entries
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/20/206c98a6503de9c78550b7e503526f59b5b2f491/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/20/206c98a6503de9c78550b7e503526f59b5b2f491//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/20/206c98a6503de9c78550b7e503526f59b5b2f491//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-26 23:48 [binutils-gdb] Implement stopped_by_sw_breakpoint for Windows gdbserver gdb-buildbot
@ 2020-05-01 8:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-01 8:08 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/2610
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
523d4f80c32f43a6b009645947b94f87df35f79f
Subject of commit:
Implement stopped_by_sw_breakpoint for Windows gdbserver
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/52/523d4f80c32f43a6b009645947b94f87df35f79f/
*** 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/52/523d4f80c32f43a6b009645947b94f87df35f79f//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/52/523d4f80c32f43a6b009645947b94f87df35f79f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-26 21:51 [binutils-gdb] Introduce win32_target_ops::decr_pc_after_break gdb-buildbot
@ 2020-05-01 5:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-05-01 5:50 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/2609
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
e54e59297a747bb4f396345aa090d43f155b5576
Subject of commit:
Introduce win32_target_ops::decr_pc_after_break
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e5/e54e59297a747bb4f396345aa090d43f155b5576/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e5/e54e59297a747bb4f396345aa090d43f155b5576//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/e5/e54e59297a747bb4f396345aa090d43f155b5576//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-26 15:55 [binutils-gdb] Move wait_for_debug_event to nat/windows-nat.c gdb-buildbot
@ 2020-04-30 22:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-30 22:55 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/2606
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
2c1d95e8697f64713d0f60f7b9231d13a3f6a145
Subject of commit:
Move wait_for_debug_event to nat/windows-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2c/2c1d95e8697f64713d0f60f7b9231d13a3f6a145/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/2c/2c1d95e8697f64713d0f60f7b9231d13a3f6a145//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/2c/2c1d95e8697f64713d0f60f7b9231d13a3f6a145//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-26 14:13 [binutils-gdb] Introduce fetch_pending_stop gdb-buildbot
@ 2020-04-30 20:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-30 20:37 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/2605
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
d2977bc4253614907058d3a339875683d8215065
Subject of commit:
Introduce fetch_pending_stop
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d2/d2977bc4253614907058d3a339875683d8215065/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/d2/d2977bc4253614907058d3a339875683d8215065//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/d2/d2977bc4253614907058d3a339875683d8215065//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-26 8:36 [binutils-gdb] Remove some globals from windows-nat.c gdb-buildbot
@ 2020-04-30 13:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-30 13:38 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/2602
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
29de418deeac717886df20ef0419240aa0dfc32a
Subject of commit:
Remove some globals from windows-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/29/29de418deeac717886df20ef0419240aa0dfc32a/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/29/29de418deeac717886df20ef0419240aa0dfc32a//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/29/29de418deeac717886df20ef0419240aa0dfc32a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-26 6:44 [binutils-gdb] Share handle_load_dll and handle_unload_dll declarations gdb-buildbot
@ 2020-04-30 11:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-30 11:20 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/2601
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
a816ba1897ae6939518d628cb58d6281c9b64a4f
Subject of commit:
Share handle_load_dll and handle_unload_dll declarations
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a816ba1897ae6939518d628cb58d6281c9b64a4f/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
==============================================
*** 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/a8/a816ba1897ae6939518d628cb58d6281c9b64a4f//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/a8/a816ba1897ae6939518d628cb58d6281c9b64a4f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-26 4:37 [binutils-gdb] Fix up complaints.h for namespace use gdb-buildbot
@ 2020-04-30 9:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-30 9:02 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/2600
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
a00caa12790706017c9331ad984b4f6b102db1b6
Subject of commit:
Fix up complaints.h for namespace use
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a0/a00caa12790706017c9331ad984b4f6b102db1b6/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: can't run to main
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=1: detach_on_fork=on: displaced=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a0/a00caa12790706017c9331ad984b4f6b102db1b6//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/a0/a00caa12790706017c9331ad984b4f6b102db1b6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-26 2:32 [binutils-gdb] Normalize handle_output_debug_string API gdb-buildbot
@ 2020-04-30 6:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-30 6:47 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/2599
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
d41b524f45fa1f02716bc41f64fb85a42dcec164
Subject of commit:
Normalize handle_output_debug_string API
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d4/d41b524f45fa1f02716bc41f64fb85a42dcec164/
*** Diff to previous build ***
==============================================
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/d4/d41b524f45fa1f02716bc41f64fb85a42dcec164//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/d4/d41b524f45fa1f02716bc41f64fb85a42dcec164//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-25 23:59 [binutils-gdb] Share some Windows-related globals gdb-buildbot
@ 2020-04-30 4:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-30 4:29 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/2598
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
3c76026df83bed7d97ed45e5b906b679a154b076
Subject of commit:
Share some Windows-related globals
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3c/3c76026df83bed7d97ed45e5b906b679a154b076/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach child
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach parent
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: switch to parent
new UNRESOLVED: gdb.trace/entry-values.exp: 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
==============================================
*** 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/3c/3c76026df83bed7d97ed45e5b906b679a154b076//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/3c/3c76026df83bed7d97ed45e5b906b679a154b076//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-25 21:00 [binutils-gdb] Share get_image_name between gdb and gdbserver gdb-buildbot
@ 2020-04-30 2:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-30 2:03 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/2597
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
9d8679cc712d4c31d218cc141fe700d8e6394964
Subject of commit:
Share get_image_name between gdb and gdbserver
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9d/9d8679cc712d4c31d218cc141fe700d8e6394964/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/9d/9d8679cc712d4c31d218cc141fe700d8e6394964//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/9d/9d8679cc712d4c31d218cc141fe700d8e6394964//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-25 17:49 [binutils-gdb] Share thread_rec between gdb and gdbserver gdb-buildbot
@ 2020-04-29 23:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-29 23:42 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/2596
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
28688adf8f883fdd8b642a446ec5578236e84b1e
Subject of commit:
Share thread_rec between gdb and gdbserver
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/28/28688adf8f883fdd8b642a446ec5578236e84b1e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================
*** 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/28/28688adf8f883fdd8b642a446ec5578236e84b1e//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/28/28688adf8f883fdd8b642a446ec5578236e84b1e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-25 14:00 [binutils-gdb] Wrap shared windows-nat code in windows_nat namespace gdb-buildbot
@ 2020-04-29 21:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-29 21:23 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/2595
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
4834dad062658ef49ef86c9c48eb004c48a242a5
Subject of commit:
Wrap shared windows-nat code in windows_nat namespace
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/48/4834dad062658ef49ef86c9c48eb004c48a242a5/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: inferior 1 exited
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/48/4834dad062658ef49ef86c9c48eb004c48a242a5//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/48/4834dad062658ef49ef86c9c48eb004c48a242a5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-25 11:20 [binutils-gdb] Call CloseHandle from ~windows_thread_info gdb-buildbot
@ 2020-04-29 19:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-29 19:04 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/2594
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
65bafd5b156bcb4f308f304e55a03e13f4eb2bed
Subject of commit:
Call CloseHandle from ~windows_thread_info
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/65/65bafd5b156bcb4f308f304e55a03e13f4eb2bed/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
UNRESOLVED -> FAIL: gdb.reverse/insn-reverse.exp: move: reverse-stepi
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/65/65bafd5b156bcb4f308f304e55a03e13f4eb2bed//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/65/65bafd5b156bcb4f308f304e55a03e13f4eb2bed//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-25 9:14 [binutils-gdb] Handle pending stops from the Windows kernel gdb-buildbot
@ 2020-04-29 16:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-29 16:46 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/2593
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
0a4afda3c63687cc5cbbdae78850ee66967cd648
Subject of commit:
Handle pending stops from the Windows kernel
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0a/0a4afda3c63687cc5cbbdae78850ee66967cd648/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.reverse/insn-reverse.exp: move: reverse-stepi
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/0a/0a4afda3c63687cc5cbbdae78850ee66967cd648//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/0a/0a4afda3c63687cc5cbbdae78850ee66967cd648//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-25 7:06 [binutils-gdb] Change type of argument to windows-nat.c:thread_rec gdb-buildbot
@ 2020-04-29 14:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-29 14:20 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/2592
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
8e61ebec34674445bd5ea8df627f5ba2afb57d79
Subject of commit:
Change type of argument to windows-nat.c:thread_rec
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8e/8e61ebec34674445bd5ea8df627f5ba2afb57d79/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: can't run to main
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new UNRESOLVED: gdb.trace/pending.exp: trace installed_in_trace: 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-native-extended-gdbserver-m64/8e/8e61ebec34674445bd5ea8df627f5ba2afb57d79//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/8e/8e61ebec34674445bd5ea8df627f5ba2afb57d79//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-25 1:35 [binutils-gdb] Use lwp, not tid, for Windows thread id gdb-buildbot
@ 2020-04-29 9:45 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-29 9:45 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/2590
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
7c7411bcabdbe88c6a2f1b9a6090eea0dc50686f
Subject of commit:
Use lwp, not tid, for Windows thread id
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7c/7c7411bcabdbe88c6a2f1b9a6090eea0dc50686f/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/7c/7c7411bcabdbe88c6a2f1b9a6090eea0dc50686f//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/7c/7c7411bcabdbe88c6a2f1b9a6090eea0dc50686f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-24 22:41 [binutils-gdb] Make windows_thread_info::name a unique_xmalloc_ptr gdb-buildbot
@ 2020-04-29 7:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-29 7:26 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/2589
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
2950fdf7423a404f6ebc691606d04917fd68228a
Subject of commit:
Make windows_thread_info::name a unique_xmalloc_ptr
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/29/2950fdf7423a404f6ebc691606d04917fd68228a/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/pending.exp: trace action_resolved: can't run to main
new UNRESOLVED: gdb.trace/pending.exp: trace action_resolved: delete all breakpoints in delete_breakpoints
==============================================
*** 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/29/2950fdf7423a404f6ebc691606d04917fd68228a//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/29/2950fdf7423a404f6ebc691606d04917fd68228a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-24 16:45 [binutils-gdb] Use new and delete for windows_thread_info gdb-buildbot
@ 2020-04-28 23:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-28 23:17 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/2586
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
e9534bd257ac9ea2f7921e8000d27c5dc4477b4e
Subject of commit:
Use new and delete for windows_thread_info
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e9/e9534bd257ac9ea2f7921e8000d27c5dc4477b4e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e9/e9534bd257ac9ea2f7921e8000d27c5dc4477b4e//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/e9/e9534bd257ac9ea2f7921e8000d27c5dc4477b4e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-24 13:55 [binutils-gdb] Share windows_thread_info between gdb and gdbserver gdb-buildbot
@ 2020-04-28 20:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-28 20:59 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/2585
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
ae1f8880758d8087ad9fdb137d45c4abc1137b52
Subject of commit:
Share windows_thread_info between gdb and gdbserver
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ae/ae1f8880758d8087ad9fdb137d45c4abc1137b52/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/ae/ae1f8880758d8087ad9fdb137d45c4abc1137b52//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/ae/ae1f8880758d8087ad9fdb137d45c4abc1137b52//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-24 5:56 [binutils-gdb] Remove the "next" field from windows_thread_info gdb-buildbot
@ 2020-04-28 14:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-28 14:04 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/2582
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
93366324f5232374bc19d94d94b5ed6159326240
Subject of commit:
Remove the "next" field from windows_thread_info
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/93/93366324f5232374bc19d94d94b5ed6159326240/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/93/93366324f5232374bc19d94d94b5ed6159326240//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/93/93366324f5232374bc19d94d94b5ed6159326240//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-24 3:04 [binutils-gdb] gdb: stop using host-dependent signal numbers in windows-tdep.c gdb-buildbot
@ 2020-04-28 11:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-28 11:47 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/2581
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
0f2265e2461babf685ff14f4ec9a9c60898453fe
Subject of commit:
gdb: stop using host-dependent signal numbers in windows-tdep.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0f/0f2265e2461babf685ff14f4ec9a9c60898453fe/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/0f/0f2265e2461babf685ff14f4ec9a9c60898453fe//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/0f/0f2265e2461babf685ff14f4ec9a9c60898453fe//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-24 0:15 [binutils-gdb] Remove objfile parameter from read_gdb_index_from_buffer gdb-buildbot
@ 2020-04-28 9:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-28 9:28 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/2580
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
3810f182ee3b14d36b37938e897ea871f1175b46
Subject of commit:
Remove objfile parameter from read_gdb_index_from_buffer
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/38/3810f182ee3b14d36b37938e897ea871f1175b46/
*** 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/38/3810f182ee3b14d36b37938e897ea871f1175b46//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/38/3810f182ee3b14d36b37938e897ea871f1175b46//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-23 15:59 [binutils-gdb] Define NetBSD specific skip_solib_resolver gdb-buildbot
@ 2020-04-28 0:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-28 0:10 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/2576
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
063f8e80b0858f3dfc27f7f5bbc3ffb1967095bc
Subject of commit:
Define NetBSD specific skip_solib_resolver
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/06/063f8e80b0858f3dfc27f7f5bbc3ffb1967095bc/
*** 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/06/063f8e80b0858f3dfc27f7f5bbc3ffb1967095bc//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/06/063f8e80b0858f3dfc27f7f5bbc3ffb1967095bc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-23 8:00 [binutils-gdb] Support for DW_AT_loclists_base and DW_FORM_loclistx gdb-buildbot
@ 2020-04-27 17:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-27 17:15 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/2573
Author:
nitachra <Nitika.Achra@amd.com>
Commit tested:
4114425321d5c380bc8fb5344db8bc8664c170c6
Subject of commit:
Support for DW_AT_loclists_base and DW_FORM_loclistx.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/41/4114425321d5c380bc8fb5344db8bc8664c170c6/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
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/41/4114425321d5c380bc8fb5344db8bc8664c170c6//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/41/4114425321d5c380bc8fb5344db8bc8664c170c6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-23 5:40 [binutils-gdb] gdb: small cleanups in dwarf2_psymtab constructors gdb-buildbot
@ 2020-04-27 14:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-27 14:56 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/2572
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
9f4e76a4b3f61d8182a4a7afe0e479ea7e3093a3
Subject of commit:
gdb: small cleanups in dwarf2_psymtab constructors
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9f/9f4e76a4b3f61d8182a4a7afe0e479ea7e3093a3/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: can't run to main
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/9f/9f4e76a4b3f61d8182a4a7afe0e479ea7e3093a3//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/9f/9f4e76a4b3f61d8182a4a7afe0e479ea7e3093a3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-22 21:47 [binutils-gdb] [gdb/symtab] Fix check-psymtab failure for inline function gdb-buildbot
@ 2020-04-27 8:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-27 8:03 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/2569
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
5707e24baa2f557d54e09641d69843111834cb9b
Subject of commit:
[gdb/symtab] Fix check-psymtab failure for inline function
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/57/5707e24baa2f557d54e09641d69843111834cb9b/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/57/5707e24baa2f557d54e09641d69843111834cb9b//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/57/5707e24baa2f557d54e09641d69843111834cb9b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-22 18:57 [binutils-gdb] Add support for intel TSXLDTRK instructions$ gdb-buildbot
@ 2020-04-27 5:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-27 5:46 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/2568
Author:
Cui,Lili <lili.cui@intel.com>
Commit tested:
bb651e8b7fc7904b06031a665138e9e6ae79adf3
Subject of commit:
Add support for intel TSXLDTRK instructions$
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bb/bb651e8b7fc7904b06031a665138e9e6ae79adf3/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/bb/bb651e8b7fc7904b06031a665138e9e6ae79adf3//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/bb/bb651e8b7fc7904b06031a665138e9e6ae79adf3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-22 16:13 [binutils-gdb] Implement basic threading support in the NetBSD target gdb-buildbot
@ 2020-04-27 3:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-27 3:28 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/2567
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
05f00e223d56927bfb03e3272a4827276ed67372
Subject of commit:
Implement basic threading support in the NetBSD target
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/05/05f00e223d56927bfb03e3272a4827276ed67372/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/05/05f00e223d56927bfb03e3272a4827276ed67372//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/05/05f00e223d56927bfb03e3272a4827276ed67372//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-22 10:36 [binutils-gdb] Fix build breakage in NetBSD tdep files gdb-buildbot
@ 2020-04-26 22:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-26 22:52 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/2565
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
dea34e8cc336a80546dac21463583a76e3e5d473
Subject of commit:
Fix build breakage in NetBSD tdep files
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/de/dea34e8cc336a80546dac21463583a76e3e5d473/
*** Diff to previous build ***
==============================================
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 7: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
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
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/de/dea34e8cc336a80546dac21463583a76e3e5d473//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/de/dea34e8cc336a80546dac21463583a76e3e5d473//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-21 21:05 [binutils-gdb] elf: Remove zero-sized relocation section from section group gdb-buildbot
@ 2020-04-26 9:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-26 9:39 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/2561
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
3349112e380712432d5818154d67ab4660af056f
Subject of commit:
elf: Remove zero-sized relocation section from section group
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/33/3349112e380712432d5818154d67ab4660af056f/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: advance to begin
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: cease trace debugging
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: ctf: collected $pc
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: ctf: correctly report $sp as unavailable
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: ctf: info registers $sp reports not available
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: ctf: info registers, multiple registers not available
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: ctf: tfind test frame
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: run trace experiment
PASS -> UNRESOLVED: gdb.trace/unavailable.exp: unavailable registers: save ctf trace file
PASS -> UNRESOLVED: gdb.trace/unavailable.exp: unavailable registers: set tracepoint
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: start trace experiment
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: tfile: collected $pc
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: tfile: correctly report $sp as unavailable
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: tfile: info registers $sp reports not available
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: tfile: info registers, multiple registers not available
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: tfile: tfind test frame
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable registers: tfind test frame
PASS -> UNRESOLVED: gdb.trace/unavailable.exp: unavailable registers: tsave unavailable.registers.tfile
==============================================
*** 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/33/3349112e380712432d5818154d67ab4660af056f//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/33/3349112e380712432d5818154d67ab4660af056f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-21 18:26 [binutils-gdb] Fix attributes of typed enums of typedefs gdb-buildbot
@ 2020-04-26 7:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-26 7:23 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/2560
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
9e7c9a03eefafae549dafa8bec13232a780804ef
Subject of commit:
Fix attributes of typed enums of typedefs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9e/9e7c9a03eefafae549dafa8bec13232a780804ef/
*** 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/9e/9e7c9a03eefafae549dafa8bec13232a780804ef//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/9e/9e7c9a03eefafae549dafa8bec13232a780804ef//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-21 12:56 [binutils-gdb] gdb: use bfd_get_section_contents to read section contents in is_linked_with_cygwin_dll gdb-buildbot
@ 2020-04-26 2:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-26 2:47 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/2558
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
e0fc5c3fcbf0d9e425483c20dc14cf9cedeac3f4
Subject of commit:
gdb: use bfd_get_section_contents to read section contents in is_linked_with_cygwin_dll
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e0/e0fc5c3fcbf0d9e425483c20dc14cf9cedeac3f4/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e0/e0fc5c3fcbf0d9e425483c20dc14cf9cedeac3f4//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/e0/e0fc5c3fcbf0d9e425483c20dc14cf9cedeac3f4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-21 7:32 [binutils-gdb] Avoid assertion failure due to complex type change gdb-buildbot
@ 2020-04-25 17:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-25 17:56 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/2555
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
0830d301901d225403eaf6629c20a6c09f3ec8f6
Subject of commit:
Avoid assertion failure due to complex type change
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/08/0830d301901d225403eaf6629c20a6c09f3ec8f6/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: ctf: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: tfile: info args
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
==============================================
*** 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/08/0830d301901d225403eaf6629c20a6c09f3ec8f6//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/08/0830d301901d225403eaf6629c20a6c09f3ec8f6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-21 4:59 [binutils-gdb] Micro-optimize partial_die_info::read gdb-buildbot
@ 2020-04-25 14:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-25 14:55 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/2552
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
e7da7f8f71572e3ef71a22ad3fae2388a53bd84c
Subject of commit:
Micro-optimize partial_die_info::read
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e7/e7da7f8f71572e3ef71a22ad3fae2388a53bd84c/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.trace/ftrace.exp: can't run to main for ftrace tests
new UNRESOLVED: gdb.trace/ftrace.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.trace/pending.exp: ftrace resolved: set pending tracepoint
new UNRESOLVED: gdb.trace/pending.exp: trace installed_in_trace: can't run to main
new UNRESOLVED: gdb.trace/pending.exp: trace installed_in_trace: delete all breakpoints in delete_breakpoints
==============================================
*** 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/e7/e7da7f8f71572e3ef71a22ad3fae2388a53bd84c//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/e7/e7da7f8f71572e3ef71a22ad3fae2388a53bd84c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-21 2:02 [binutils-gdb] gdb: Don't remove duplicate entries from the line table gdb-buildbot
@ 2020-04-25 12:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-25 12:32 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/2551
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
c90d28ac8903c5781b1a82e487072081383fd7b9
Subject of commit:
gdb: Don't remove duplicate entries from the line table
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c9/c90d28ac8903c5781b1a82e487072081383fd7b9/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/access_tagged_param.exp: continue
PASS -> FAIL: gdb.ada/ref_param.exp: frame argument value printed
PASS -> FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.opt/inline-small-func.exp: info breakpoints
==============================================
*** 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/c9/c90d28ac8903c5781b1a82e487072081383fd7b9//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/c9/c90d28ac8903c5781b1a82e487072081383fd7b9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-20 22:47 [binutils-gdb] gdb/testsuite: Add support for DW_LNS_set_file to DWARF compiler gdb-buildbot
@ 2020-04-25 10:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-25 10:13 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/2550
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
34e9a9fa0a18fc544bc8ec3dc9e02096be1e4335
Subject of commit:
gdb/testsuite: Add support for DW_LNS_set_file to DWARF compiler
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/34/34e9a9fa0a18fc544bc8ec3dc9e02096be1e4335/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/34/34e9a9fa0a18fc544bc8ec3dc9e02096be1e4335//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/34/34e9a9fa0a18fc544bc8ec3dc9e02096be1e4335//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-20 12:37 [binutils-gdb] gdbserver/linux-low: delete 'linux_target_ops' and 'the_low_target' gdb-buildbot
@ 2020-04-25 0:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-25 0:54 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/2546
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7
Subject of commit:
gdbserver/linux-low: delete 'linux_target_ops' and 'the_low_target'
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0d/0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/0d/0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7//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/0d/0dd7b52ede3de7c5e43cc7c0a52a4e2f2b4297b7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-20 9:59 [binutils-gdb] gdbserver/linux-low: turn 'get_ipa_tdesc_idx' into a method gdb-buildbot
@ 2020-04-24 22:33 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-24 22:33 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/2545
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
fc5ecdb630406b68ce98c112e1fe618b5839c188
Subject of commit:
gdbserver/linux-low: turn 'get_ipa_tdesc_idx' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fc/fc5ecdb630406b68ce98c112e1fe618b5839c188/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: ctf: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: tfile: info args
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
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/fc/fc5ecdb630406b68ce98c112e1fe618b5839c188//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/fc/fc5ecdb630406b68ce98c112e1fe618b5839c188//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-20 7:19 [binutils-gdb] gdbserver/linux-low: turn 'get_syscall_trapinfo' into a method gdb-buildbot
@ 2020-04-24 20:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-24 20:13 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/2544
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
9eedd27d42ceeb6f3765c24972a5c97ce20727cd
Subject of commit:
gdbserver/linux-low: turn 'get_syscall_trapinfo' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9e/9eedd27d42ceeb6f3765c24972a5c97ce20727cd/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/non-ldr-exc-3.exp: lock-sched=on,non-stop=off: continue to breakpoint: break-here
new UNRESOLVED: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: delete all breakpoints in delete_breakpoints
==============================================
*** 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/9e/9eedd27d42ceeb6f3765c24972a5c97ce20727cd//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/9e/9eedd27d42ceeb6f3765c24972a5c97ce20727cd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-20 5:05 [binutils-gdb] gdbserver/linux-low: turn 'supports_hardware_single_step' into a method gdb-buildbot
@ 2020-04-24 17:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-24 17:54 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/2543
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
b31cdfa69f4adfc4760da1480c900f5c27421d43
Subject of commit:
gdbserver/linux-low: turn 'supports_hardware_single_step' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b3/b31cdfa69f4adfc4760da1480c900f5c27421d43/
*** Diff to previous build ***
==============================================
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/b3/b31cdfa69f4adfc4760da1480c900f5c27421d43//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/b3/b31cdfa69f4adfc4760da1480c900f5c27421d43//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-20 2:05 [binutils-gdb] gdbserver/linux-low: turn 'supports_range_stepping' into a method gdb-buildbot
@ 2020-04-24 15:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-24 15:34 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/2542
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
9cfd87155142f0467cdadb067efd21e165956c20
Subject of commit:
gdbserver/linux-low: turn 'supports_range_stepping' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9c/9cfd87155142f0467cdadb067efd21e165956c20/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/9c/9cfd87155142f0467cdadb067efd21e165956c20//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/9c/9cfd87155142f0467cdadb067efd21e165956c20//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-20 0:00 [binutils-gdb] gdbserver/linux-low: turn 'emit_ops' into a method gdb-buildbot
@ 2020-04-24 13:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-24 13:19 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/2541
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
ab64c99982e1e26439dc66b2ea04aa0d4b0458c9
Subject of commit:
gdbserver/linux-low: turn 'emit_ops' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ab/ab64c99982e1e26439dc66b2ea04aa0d4b0458c9/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/ab/ab64c99982e1e26439dc66b2ea04aa0d4b0458c9//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/ab/ab64c99982e1e26439dc66b2ea04aa0d4b0458c9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-19 21:43 [binutils-gdb] gdbserver/linux-low: turn fast tracepoint ops into methods gdb-buildbot
@ 2020-04-24 10:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-24 10:59 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/2540
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
809a0c354b97bbbcacbd99808f0e328b39614a8f
Subject of commit:
gdbserver/linux-low: turn fast tracepoint ops into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/80/809a0c354b97bbbcacbd99808f0e328b39614a8f/
*** Diff to previous build ***
==============================================
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/80/809a0c354b97bbbcacbd99808f0e328b39614a8f//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/80/809a0c354b97bbbcacbd99808f0e328b39614a8f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-19 19:18 [binutils-gdb] gdbserver/linux-low: turn 'get_thread_area' into a method gdb-buildbot
@ 2020-04-24 8:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-24 8:39 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/2539
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
13e567af27e45f7e2f7adc9562d4cfe5a81227f9
Subject of commit:
gdbserver/linux-low: turn 'get_thread_area' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/13/13e567af27e45f7e2f7adc9562d4cfe5a81227f9/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach child
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach parent
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: switch to parent
==============================================
*** 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/13/13e567af27e45f7e2f7adc9562d4cfe5a81227f9//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/13/13e567af27e45f7e2f7adc9562d4cfe5a81227f9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-19 16:59 [binutils-gdb] gdbserver/linux-low: turn 'supports_tracepoints' into a method gdb-buildbot
@ 2020-04-24 6:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-24 6:22 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/2538
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
47f70aa7685c0a7fad4ca76964a4199a5b5edd1c
Subject of commit:
gdbserver/linux-low: turn 'supports_tracepoints' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/47/47f70aa7685c0a7fad4ca76964a4199a5b5edd1c/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: ctf: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: tfile: info args
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
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/47/47f70aa7685c0a7fad4ca76964a4199a5b5edd1c//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/47/47f70aa7685c0a7fad4ca76964a4199a5b5edd1c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-19 14:22 [binutils-gdb] gdbserver/linux-low: turn 'process_qsupported' into a method gdb-buildbot
@ 2020-04-24 4:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-24 4:03 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/2537
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
a5b5da9258db39b9b15ae2796ab637c73ba20422
Subject of commit:
gdbserver/linux-low: turn 'process_qsupported' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a5/a5b5da9258db39b9b15ae2796ab637c73ba20422/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new UNRESOLVED: gdb.trace/collection.exp: current target does not support trace
new UNRESOLVED: gdb.trace/collection.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.trace/pending.exp: trace disconn: 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-native-extended-gdbserver-m64/a5/a5b5da9258db39b9b15ae2796ab637c73ba20422//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/a5/a5b5da9258db39b9b15ae2796ab637c73ba20422//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-19 6:41 [binutils-gdb] gdbserver/linux-low: turn 'siginfo_fixup' into a method gdb-buildbot
@ 2020-04-23 21:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-23 21:06 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/2534
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
cb63de7ca804e4178a48dc500423bcb89726d893
Subject of commit:
gdbserver/linux-low: turn 'siginfo_fixup' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/cb/cb63de7ca804e4178a48dc500423bcb89726d893/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: ctf: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: tfile: info args
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
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/cb/cb63de7ca804e4178a48dc500423bcb89726d893//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/cb/cb63de7ca804e4178a48dc500423bcb89726d893//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-19 4:30 [binutils-gdb] gdbserver/linux-low: turn '{collect, supply}_ptrace_register' into methods gdb-buildbot
@ 2020-04-23 18:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-23 18:46 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/2533
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
b35db73327cf54445a20533305fcf705e88a520b
Subject of commit:
gdbserver/linux-low: turn '{collect, supply}_ptrace_register' into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b3/b35db73327cf54445a20533305fcf705e88a520b/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: advance to begin
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: cease trace debugging
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: collected arg char
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: collected arg double
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: collected arg float
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: collected arg int
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: collected arg struct member char
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: collected arg struct member double
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: collected arg struct member float
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: collected arg struct member int
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: run trace experiment
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: start trace experiment
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: tfind 0 with entry-values both
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: tfind 0 with entry-values only
PASS -> FAIL: gdb.trace/collection.exp: collect args collectively: tfind test frame
new UNRESOLVED: gdb.trace/pending.exp: trace action_resolved: 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-native-extended-gdbserver-m64/b3/b35db73327cf54445a20533305fcf705e88a520b//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/b3/b35db73327cf54445a20533305fcf705e88a520b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-19 2:25 [binutils-gdb] gdbserver/linux-low: turn watchpoint ops into methods gdb-buildbot
@ 2020-04-23 16:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-23 16:29 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/2532
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
ac1bbaca10666fc85572a6deeaa6f1debcd4c129
Subject of commit:
gdbserver/linux-low: turn watchpoint ops into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ac/ac1bbaca10666fc85572a6deeaa6f1debcd4c129/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ac/ac1bbaca10666fc85572a6deeaa6f1debcd4c129//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/ac/ac1bbaca10666fc85572a6deeaa6f1debcd4c129//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-18 19:39 [binutils-gdb] gdbserver/linux-low: turn 'supports_z_point_type' into a method gdb-buildbot
@ 2020-04-23 11:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-23 11:52 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/2530
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
007c9b975dcb9ad50b45d52d2d7a955537beefb7
Subject of commit:
gdbserver/linux-low: turn 'supports_z_point_type' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/00/007c9b975dcb9ad50b45d52d2d7a955537beefb7/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: ctf: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: tfile: info args
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
==============================================
*** 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/00/007c9b975dcb9ad50b45d52d2d7a955537beefb7//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/00/007c9b975dcb9ad50b45d52d2d7a955537beefb7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-18 16:47 [binutils-gdb] gdbserver/linux-low: turn 'breakpoint_at' into a method gdb-buildbot
@ 2020-04-23 9:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-23 9:32 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/2529
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
d7146cda56c8ee6d1129c0c787c2645c01301fb8
Subject of commit:
gdbserver/linux-low: turn 'breakpoint_at' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d7/d7146cda56c8ee6d1129c0c787c2645c01301fb8/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
PASS -> UNRESOLVED: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: no thread-specific bp: next: set displaced-stepping on
==============================================
*** 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/d7/d7146cda56c8ee6d1129c0c787c2645c01301fb8//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/d7/d7146cda56c8ee6d1129c0c787c2645c01301fb8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-18 14:29 [binutils-gdb] gdbserver/linux-low: turn the 'decr_pc_after_break' field into a method gdb-buildbot
@ 2020-04-23 7:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-23 7:13 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/2528
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
d4807ea231eea599a474a9ad75a0552ef7217e1f
Subject of commit:
gdbserver/linux-low: turn the 'decr_pc_after_break' field into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d4/d4807ea231eea599a474a9ad75a0552ef7217e1f/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new UNRESOLVED: gdb.threads/watchthreads2.exp: can't run to main
new UNRESOLVED: gdb.threads/watchthreads2.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/watchthreads2.exp: set can-use-hw-watchpoints 1
==============================================
*** 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/d4/d4807ea231eea599a474a9ad75a0552ef7217e1f//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/d4/d4807ea231eea599a474a9ad75a0552ef7217e1f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-18 8:42 [binutils-gdb] gdbserver/linux-low: turn 'sw_breakpoint_from_kind' into a method gdb-buildbot
@ 2020-04-23 2:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-23 2:31 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/2526
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
3ca4edb6617353defacd3bf3a4ee3d458238419e
Subject of commit:
gdbserver/linux-low: turn 'sw_breakpoint_from_kind' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3c/3ca4edb6617353defacd3bf3a4ee3d458238419e/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/3c/3ca4edb6617353defacd3bf3a4ee3d458238419e//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/3c/3ca4edb6617353defacd3bf3a4ee3d458238419e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-18 5:47 [binutils-gdb] gdbserver/linux-low: turn 'breakpoint_kind_from_{pc, current_state}' into methods gdb-buildbot
@ 2020-04-23 0:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-23 0:11 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/2525
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
06250e4e67c0f40a00526afac642b4c345b56750
Subject of commit:
gdbserver/linux-low: turn 'breakpoint_kind_from_{pc, current_state}' into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/06/06250e4e67c0f40a00526afac642b4c345b56750/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/06/06250e4e67c0f40a00526afac642b4c345b56750//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/06/06250e4e67c0f40a00526afac642b4c345b56750//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-18 3:06 [binutils-gdb] gdbserver/linux-low: turn 'get_pc' and 'set_pc' into methods gdb-buildbot
@ 2020-04-22 21:51 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-22 21:51 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/2524
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
bf9ae9d8c37a4e1dfd192f266c20ea5786fd1bbd
Subject of commit:
gdbserver/linux-low: turn 'get_pc' and 'set_pc' into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bf/bf9ae9d8c37a4e1dfd192f266c20ea5786fd1bbd/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/bf/bf9ae9d8c37a4e1dfd192f266c20ea5786fd1bbd//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/bf/bf9ae9d8c37a4e1dfd192f266c20ea5786fd1bbd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-18 0:04 [binutils-gdb] gdbserver/linux-low: turn some more static functions into private methods gdb-buildbot
@ 2020-04-22 19:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-22 19:31 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/2523
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
df95181f00dacf335deb4415e3e6061548b917ba
Subject of commit:
gdbserver/linux-low: turn some more static functions into private methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/df/df95181f00dacf335deb4415e3e6061548b917ba/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/df/df95181f00dacf335deb4415e3e6061548b917ba//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/df/df95181f00dacf335deb4415e3e6061548b917ba//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-17 18:27 [binutils-gdb] gdbserver/linux-low: turn 'cannot_{fetch/store}_register' into methods gdb-buildbot
@ 2020-04-22 14:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-22 14:52 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/2521
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
daca57a7de50f97a4e8df917447561617a0298b2
Subject of commit:
gdbserver/linux-low: turn 'cannot_{fetch/store}_register' into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/da/daca57a7de50f97a4e8df917447561617a0298b2/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: iter=2: continue until exit
PASS -> FAIL: gdb.multi/multi-re-run.exp: re_run_inf=2: iter=2: print re_run_var_2
==============================================
*** 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/da/daca57a7de50f97a4e8df917447561617a0298b2//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/da/daca57a7de50f97a4e8df917447561617a0298b2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-17 15:28 [binutils-gdb] gdbserver/linux-low: turn 'regs_info' into a method gdb-buildbot
@ 2020-04-22 12:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-22 12:32 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/2520
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
aa8d21c9bb43baaa35f456a3d371942a26cdce4e
Subject of commit:
gdbserver/linux-low: turn 'regs_info' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/aa/aa8d21c9bb43baaa35f456a3d371942a26cdce4e/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/aa/aa8d21c9bb43baaa35f456a3d371942a26cdce4e//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/aa/aa8d21c9bb43baaa35f456a3d371942a26cdce4e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-17 12:38 [binutils-gdb] gdbserver/linux-low: turn 'arch_setup' into a method gdb-buildbot
@ 2020-04-22 10:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-22 10:12 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/2519
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
797bcff595c5e161b333077299fcaca19bb4fd17
Subject of commit:
gdbserver/linux-low: turn 'arch_setup' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/79/797bcff595c5e161b333077299fcaca19bb4fd17/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/disconnected-tracing.exp: tfind: can't run to main
new FAIL: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/79/797bcff595c5e161b333077299fcaca19bb4fd17//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/79/797bcff595c5e161b333077299fcaca19bb4fd17//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-17 9:43 [binutils-gdb] gdbserver/linux-low: start turning linux target ops into methods gdb-buildbot
@ 2020-04-22 7:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-22 7:55 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/2518
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
ef0478f6112ede4da9b70e07aa3124f0d2faf108
Subject of commit:
gdbserver/linux-low: start turning linux target ops into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/ef0478f6112ede4da9b70e07aa3124f0d2faf108/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
UNRESOLVED -> FAIL: gdb.reverse/insn-reverse.exp: move: capture_command_output for info all-registers
==============================================
*** 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/ef/ef0478f6112ede4da9b70e07aa3124f0d2faf108//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/ef/ef0478f6112ede4da9b70e07aa3124f0d2faf108//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-17 7:13 [binutils-gdb] gdbserver/linux-low: turn some static functions into private methods gdb-buildbot
@ 2020-04-22 5:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-22 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/2517
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
d16f3f6c70dfc71bc239cac4f49be34c94c366ad
Subject of commit:
gdbserver/linux-low: turn some static functions into private methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d1/d16f3f6c70dfc71bc239cac4f49be34c94c366ad/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.reverse/insn-reverse.exp: move: capture_command_output for info all-registers
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/d1/d16f3f6c70dfc71bc239cac4f49be34c94c366ad//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/d1/d16f3f6c70dfc71bc239cac4f49be34c94c366ad//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-17 2:10 [binutils-gdb] Add support for intel SERIALIZE instruction gdb-buildbot
@ 2020-04-22 0:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-22 0:56 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/2515
Author:
LiliCui <lili.cui@intel.com>
Commit tested:
4b27d27c07a9514d5f6d0876f659a32378fb4801
Subject of commit:
Add support for intel SERIALIZE instruction
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4b/4b27d27c07a9514d5f6d0876f659a32378fb4801/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4b/4b27d27c07a9514d5f6d0876f659a32378fb4801//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/4b/4b27d27c07a9514d5f6d0876f659a32378fb4801//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-16 23:19 [binutils-gdb] [gdb/testsuite] Fix silent timeout in gdb.multi/multi-target.exp gdb-buildbot
@ 2020-04-21 22:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-21 22:36 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/2514
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
f32682eacae76881752bae2a72c485b98badb2c3
Subject of commit:
[gdb/testsuite] Fix silent timeout in gdb.multi/multi-target.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f3/f32682eacae76881752bae2a72c485b98badb2c3/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f3/f32682eacae76881752bae2a72c485b98badb2c3//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/f3/f32682eacae76881752bae2a72c485b98badb2c3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-16 20:26 [binutils-gdb] [gdb/ada] Fix -readnow FAILs gdb-buildbot
@ 2020-04-21 20:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-21 20:19 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/2513
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
1aa98955b19676497f89112a0962f24f359ce761
Subject of commit:
[gdb/ada] Fix -readnow FAILs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1a/1aa98955b19676497f89112a0962f24f359ce761/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/1a/1aa98955b19676497f89112a0962f24f359ce761//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/1a/1aa98955b19676497f89112a0962f24f359ce761//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-16 17:34 [binutils-gdb] [gdb] Use partial symbol table to find language for main gdb-buildbot
@ 2020-04-21 17:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-21 17:59 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/2512
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
d3214198119c1a2f9a6a2b8fcc56d8c324e1a245
Subject of commit:
[gdb] Use partial symbol table to find language for main
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d3/d3214198119c1a2f9a6a2b8fcc56d8c324e1a245/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/d3/d3214198119c1a2f9a6a2b8fcc56d8c324e1a245//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/d3/d3214198119c1a2f9a6a2b8fcc56d8c324e1a245//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-16 14:39 [binutils-gdb] [gdb/testsuite] Accept new complex print style in mixed-lang-stack.exp gdb-buildbot
@ 2020-04-21 15:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-21 15:40 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/2511
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
cc77ed241bab61c0e86f4620e68be4481063a450
Subject of commit:
[gdb/testsuite] Accept new complex print style in mixed-lang-stack.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/cc/cc77ed241bab61c0e86f4620e68be4481063a450/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/cc/cc77ed241bab61c0e86f4620e68be4481063a450//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/cc/cc77ed241bab61c0e86f4620e68be4481063a450//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-16 8:49 [binutils-gdb] Fix an undefined behavior in record_line gdb-buildbot
@ 2020-04-21 11:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-21 11:00 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/2509
Author:
Bernd Edlinger <bernd.edlinger@hotmail.de>
Commit tested:
64dc2d4bd24ff7119c913fff91184414f09b8042
Subject of commit:
Fix an undefined behavior in record_line
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/64/64dc2d4bd24ff7119c913fff91184414f09b8042/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step into bar from foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step into baz from foo_cold
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step into foo from main
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step into foo_cold from foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step out of bar to foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step out of baz to foo_cold
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step out of foo to main
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: hi-cold: step-test-3: step out of foo_cold to foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step into bar from foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step into baz from foo_cold
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step into foo from main
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step into foo_cold from foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step out of bar to foo
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step out of baz to foo_cold
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step out of foo to main
PASS -> FAIL: gdb.dwarf2/dw2-ranges-func.exp: lo-cold: step-test-3: step out of foo_cold to foo
==============================================
*** 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/64/64dc2d4bd24ff7119c913fff91184414f09b8042//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/64/64dc2d4bd24ff7119c913fff91184414f09b8042//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-16 6:02 [binutils-gdb] Fix the resizing condition of the line table gdb-buildbot
@ 2020-04-21 8:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-21 8:40 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/2508
Author:
Bernd Edlinger <bernd.edlinger@hotmail.de>
Commit tested:
bbe3dc410bd5c29955ef3409f9fee9e7c73b2c49
Subject of commit:
Fix the resizing condition of the line table
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bb/bbe3dc410bd5c29955ef3409f9fee9e7c73b2c49/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/bb/bbe3dc410bd5c29955ef3409f9fee9e7c73b2c49//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/bb/bbe3dc410bd5c29955ef3409f9fee9e7c73b2c49//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-15 21:30 [binutils-gdb] Add _Complex type support to C parser gdb-buildbot
@ 2020-04-21 1:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-21 1:43 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/2505
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
3638a098a21ce706ef2b17185f3b165e4f9a5c54
Subject of commit:
Add _Complex type support to C parser
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/36/3638a098a21ce706ef2b17185f3b165e4f9a5c54/
*** Diff to previous build ***
==============================================
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/36/3638a098a21ce706ef2b17185f3b165e4f9a5c54//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/36/3638a098a21ce706ef2b17185f3b165e4f9a5c54//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-15 18:33 [binutils-gdb] Implement complex arithmetic gdb-buildbot
@ 2020-04-20 23:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-20 23:23 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/2504
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c34e87146628a14cf662dca46aac893d06502f52
Subject of commit:
Implement complex arithmetic
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c3/c34e87146628a14cf662dca46aac893d06502f52/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: detach child
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: detach parent
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: switch to parent
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new UNRESOLVED: gdb.trace/change-loc.exp: 1 ftrace: can't run to main
new UNRESOLVED: gdb.trace/change-loc.exp: 1 ftrace: delete all breakpoints in delete_breakpoints
new FAIL: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/c3/c34e87146628a14cf662dca46aac893d06502f52//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/c3/c34e87146628a14cf662dca46aac893d06502f52//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-15 15:38 [binutils-gdb] Change the C parser to allow complex constants gdb-buildbot
@ 2020-04-20 21:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-20 21:05 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/2503
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
fa649bb7d3c8fd97c1d8f01a3023094468f66ca4
Subject of commit:
Change the C parser to allow complex constants
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fa/fa649bb7d3c8fd97c1d8f01a3023094468f66ca4/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new UNRESOLVED: gdb.trace/trace-break.exp: 3 ftrace off: can't run to main
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/fa/fa649bb7d3c8fd97c1d8f01a3023094468f66ca4//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/fa/fa649bb7d3c8fd97c1d8f01a3023094468f66ca4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-15 9:52 [binutils-gdb] Add accessors for members of complex numbers gdb-buildbot
@ 2020-04-20 16:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-20 16:25 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/2501
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
4c99290df04ba757b74a21ac5a6d16fe300e49ed
Subject of commit:
Add accessors for members of complex numbers
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4c/4c99290df04ba757b74a21ac5a6d16fe300e49ed/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/4c/4c99290df04ba757b74a21ac5a6d16fe300e49ed//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/4c/4c99290df04ba757b74a21ac5a6d16fe300e49ed//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-15 4:22 [binutils-gdb] Move Rust union tests to new file gdb-buildbot
@ 2020-04-20 11:45 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-20 11:45 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/2499
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
3d1cfd43bec7c22928d12ab235151b8eeeaf4e96
Subject of commit:
Move Rust union tests to new file
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3d/3d1cfd43bec7c22928d12ab235151b8eeeaf4e96/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: 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-extended-gdbserver-m64/3d/3d1cfd43bec7c22928d12ab235151b8eeeaf4e96//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/3d/3d1cfd43bec7c22928d12ab235151b8eeeaf4e96//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-15 1:34 [binutils-gdb] Remove local variable from simple.rs test case gdb-buildbot
@ 2020-04-20 9:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-20 9:27 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/2498
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
e033dfa92f844849cc528649eee24d2b0b3f22e5
Subject of commit:
Remove local variable from simple.rs test case
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e0/e033dfa92f844849cc528649eee24d2b0b3f22e5/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e0/e033dfa92f844849cc528649eee24d2b0b3f22e5//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/e0/e033dfa92f844849cc528649eee24d2b0b3f22e5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-14 22:39 [binutils-gdb] gdb/infrun: stop all threads if there exists a non-stop target gdb-buildbot
@ 2020-04-20 7:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-20 7:10 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/2497
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
53cccef118b80913d76c0737108f6c32471cd09e
Subject of commit:
gdb/infrun: stop all threads if there exists a non-stop target
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/53/53cccef118b80913d76c0737108f6c32471cd09e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/annota1.exp: continue to printf
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/53/53cccef118b80913d76c0737108f6c32471cd09e//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/53/53cccef118b80913d76c0737108f6c32471cd09e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-14 19:49 [binutils-gdb] gdb: define convenience function 'exists_non_stop_target' gdb-buildbot
@ 2020-04-20 4:51 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-20 4:51 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/2496
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
a0714d305fb78b3a2a74a2acd6d8c66da80a6387
Subject of commit:
gdb: define convenience function 'exists_non_stop_target'
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a0/a0714d305fb78b3a2a74a2acd6d8c66da80a6387/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a0/a0714d305fb78b3a2a74a2acd6d8c66da80a6387//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/a0/a0714d305fb78b3a2a74a2acd6d8c66da80a6387//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-14 17:00 [binutils-gdb] Allow pointer arithmetic with integer references gdb-buildbot
@ 2020-04-20 2:33 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-20 2:33 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/2495
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
60e22c1eacb0df32aeeeb78c53cfd46c53a3770f
Subject of commit:
Allow pointer arithmetic with integer references
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/60/60e22c1eacb0df32aeeeb78c53cfd46c53a3770f/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach child
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach parent
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: switch to parent
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
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
==============================================
*** 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/60/60e22c1eacb0df32aeeeb78c53cfd46c53a3770f//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/60/60e22c1eacb0df32aeeeb78c53cfd46c53a3770f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-14 14:15 [binutils-gdb] gdb/remote: do not check for null_ptid in stop reply gdb-buildbot
@ 2020-04-20 0:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-20 0:16 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/2494
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
e139a727be23643702eecbbcaa9c590cc680e3d7
Subject of commit:
gdb/remote: do not check for null_ptid in stop reply
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e1/e139a727be23643702eecbbcaa9c590cc680e3d7/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e1/e139a727be23643702eecbbcaa9c590cc680e3d7//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/e1/e139a727be23643702eecbbcaa9c590cc680e3d7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-14 6:15 [binutils-gdb] Arm: Fix LSB of GOT for Thumb2 only PLT gdb-buildbot
@ 2020-04-19 17:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-19 17:22 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/2491
Author:
Tamar Christina <tamar.christina@arm.com>
Commit tested:
a7618269b727da9cf56727c22cb538ff5f0e4d25
Subject of commit:
Arm: Fix LSB of GOT for Thumb2 only PLT.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a7/a7618269b727da9cf56727c22cb538ff5f0e4d25/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a7/a7618269b727da9cf56727c22cb538ff5f0e4d25//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/a7/a7618269b727da9cf56727c22cb538ff5f0e4d25//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-14 3:40 [binutils-gdb] Arm: Fix thumb2 PLT branch offsets gdb-buildbot
@ 2020-04-19 15:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-19 15:04 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/2490
Author:
Tamar Christina <tamar.christina@arm.com>
Commit tested:
15ccbdd717530f81f545a716f0df1de62aee1157
Subject of commit:
Arm: Fix thumb2 PLT branch offsets.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/15/15ccbdd717530f81f545a716f0df1de62aee1157/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.trace/collection.exp: collect a[-b]: advance to begin
PASS -> FAIL: gdb.trace/collection.exp: collect a[-b]: cease trace debugging
PASS -> UNRESOLVED: gdb.trace/collection.exp: collect a[-b]: find tracepoint line
PASS -> FAIL: gdb.trace/collection.exp: collect a[-b]: got expected value '2'
PASS -> FAIL: gdb.trace/collection.exp: collect a[-b]: run trace experiment
PASS -> FAIL: gdb.trace/collection.exp: collect a[-b]: start trace experiment
PASS -> FAIL: gdb.trace/collection.exp: collect a[-b]: tfind test frame
==============================================
*** 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/15/15ccbdd717530f81f545a716f0df1de62aee1157//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/15/15ccbdd717530f81f545a716f0df1de62aee1157//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-14 0:57 [binutils-gdb] include: Sync plugin-api.h with GCC gdb-buildbot
@ 2020-04-19 12:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-19 12:47 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/2489
Author:
Martin Liska <mliska@suse.cz>
Commit tested:
40bd13ced9c03c74af9d55a98d6e06ddcf11429c
Subject of commit:
include: Sync plugin-api.h with GCC
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/40/40bd13ced9c03c74af9d55a98d6e06ddcf11429c/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/40/40bd13ced9c03c74af9d55a98d6e06ddcf11429c//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/40/40bd13ced9c03c74af9d55a98d6e06ddcf11429c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-13 22:10 [binutils-gdb] mmo.c: Fix ld testsuite regression "objcopy executable (pr25662)" gdb-buildbot
@ 2020-04-19 10:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-19 10:29 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/2488
Author:
Hans-Peter Nilsson <hp@bitrange.com>
Commit tested:
7b948a2580d34e7e93bef0527ca853e22515dec4
Subject of commit:
mmo.c: Fix ld testsuite regression "objcopy executable (pr25662)".
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7b/7b948a2580d34e7e93bef0527ca853e22515dec4/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/7b/7b948a2580d34e7e93bef0527ca853e22515dec4//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/7b/7b948a2580d34e7e93bef0527ca853e22515dec4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-13 16:22 [binutils-gdb] Don't pass NULL to memcpy in gdb gdb-buildbot
@ 2020-04-19 5:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-19 5:53 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/2486
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
af62665e1339d970ab8ea3e3260dbdbde0009c2d
Subject of commit:
Don't pass NULL to memcpy in gdb
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/af/af62665e1339d970ab8ea3e3260dbdbde0009c2d/
*** Diff to previous build ***
==============================================
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/af/af62665e1339d970ab8ea3e3260dbdbde0009c2d//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/af/af62665e1339d970ab8ea3e3260dbdbde0009c2d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-13 14:02 [binutils-gdb] [gdb/testsuite] Fix c-linkage-name.exp with -flto gdb-buildbot
@ 2020-04-19 3:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-19 3: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/2485
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
16b0db75af6b4b4d434aa84c74d58b7290e04143
Subject of commit:
[gdb/testsuite] Fix c-linkage-name.exp with -flto
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/16/16b0db75af6b4b4d434aa84c74d58b7290e04143/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.trace/trace-break.exp: 1 ftrace off: can't run to main
new UNRESOLVED: gdb.trace/trace-break.exp: 1 ftrace off: delete all breakpoints in delete_breakpoints
==============================================
*** 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/16/16b0db75af6b4b4d434aa84c74d58b7290e04143//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/16/16b0db75af6b4b4d434aa84c74d58b7290e04143//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-13 11:14 [binutils-gdb] alpha-coff: unitialised read gdb-buildbot
@ 2020-04-19 1:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-19 1:14 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/2484
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
89b599df37111317b9bc6fab541eb94c8b0bea35
Subject of commit:
alpha-coff: unitialised read
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/89/89b599df37111317b9bc6fab541eb94c8b0bea35/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new UNRESOLVED: gdb.trace/trace-break.exp: 2 trace ftrace off: can't run to main
new UNRESOLVED: gdb.trace/trace-break.exp: 2 trace ftrace off: delete all breakpoints in delete_breakpoints
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
==============================================
*** 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/89/89b599df37111317b9bc6fab541eb94c8b0bea35//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/89/89b599df37111317b9bc6fab541eb94c8b0bea35//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-13 4:06 [binutils-gdb] RISC-V: Update CSR to privileged spec 1.11 gdb-buildbot
@ 2020-04-18 15:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-18 15:50 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/2480
Author:
Nelson Chu <nelson.chu@sifive.com>
Commit tested:
d1a89da5de1e2d15de27c5ca6b575d633c0117dd
Subject of commit:
RISC-V: Update CSR to privileged spec 1.11.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d1/d1a89da5de1e2d15de27c5ca6b575d633c0117dd/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d1/d1a89da5de1e2d15de27c5ca6b575d633c0117dd//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/d1/d1a89da5de1e2d15de27c5ca6b575d633c0117dd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-13 1:14 [binutils-gdb] Change ada_which_variant_applies to value API gdb-buildbot
@ 2020-04-18 13:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-18 13:32 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/2479
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
d8af906814bd69dad694e475288401b1dee6ac3a
Subject of commit:
Change ada_which_variant_applies to value API
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d8/d8af906814bd69dad694e475288401b1dee6ac3a/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: ctf: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: tfile: info args
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
==============================================
*** 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/d8/d8af906814bd69dad694e475288401b1dee6ac3a//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/d8/d8af906814bd69dad694e475288401b1dee6ac3a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-12 22:23 [binutils-gdb] Fix objcopy's --preserve-dates command line option so that it will work with PE format files gdb-buildbot
@ 2020-04-18 11:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-18 11:14 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/2478
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
00386881a3d0f7ac89fcc5cc912da8cd69c04324
Subject of commit:
Fix objcopy's --preserve-dates command line option so that it will work with PE format files.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/00/00386881a3d0f7ac89fcc5cc912da8cd69c04324/
*** 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/00/00386881a3d0f7ac89fcc5cc912da8cd69c04324//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/00/00386881a3d0f7ac89fcc5cc912da8cd69c04324//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-12 19:51 [binutils-gdb] [PowerPC] Fix debug register issues in ppc-linux-nat gdb-buildbot
@ 2020-04-18 9:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-18 9:00 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/2477
Author:
Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
Commit tested:
227c0bf4b3dd0cf65dceb58e729e9da81b38b5a7
Subject of commit:
[PowerPC] Fix debug register issues in ppc-linux-nat
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/22/227c0bf4b3dd0cf65dceb58e729e9da81b38b5a7/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/22/227c0bf4b3dd0cf65dceb58e729e9da81b38b5a7//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/22/227c0bf4b3dd0cf65dceb58e729e9da81b38b5a7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-12 14:39 [binutils-gdb] Add low_new_clone method to linux_nat_target gdb-buildbot
@ 2020-04-18 4:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-18 4:25 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/2475
Author:
Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
Commit tested:
1310c1b066d4a7b0ce48ad55103a8d559a37ace1
Subject of commit:
Add low_new_clone method to linux_nat_target.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/13/1310c1b066d4a7b0ce48ad55103a8d559a37ace1/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/13/1310c1b066d4a7b0ce48ad55103a8d559a37ace1//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/13/1310c1b066d4a7b0ce48ad55103a8d559a37ace1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-12 11:59 [binutils-gdb] [gdb/testsuite] Fix c-linkage-name.exp with {cc-with-gdb-index, readnow}.exp gdb-buildbot
@ 2020-04-18 2:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-18 2:07 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/2474
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
c0502da6886e27f344375e471d6a7610a008c404
Subject of commit:
[gdb/testsuite] Fix c-linkage-name.exp with {cc-with-gdb-index,readnow}.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c0/c0502da6886e27f344375e471d6a7610a008c404/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.reverse/insn-reverse.exp: move: x/i $pc
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================
*** 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/c0/c0502da6886e27f344375e471d6a7610a008c404//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/c0/c0502da6886e27f344375e471d6a7610a008c404//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-12 9:56 [binutils-gdb] PR25745, powerpc64-ld overflows string buffer in --stats mode gdb-buildbot
@ 2020-04-17 23:49 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-17 23:49 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/2473
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
988b7300bc990abafd982bdcd217c58bc1e0679a
Subject of commit:
PR25745, powerpc64-ld overflows string buffer in --stats mode
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/98/988b7300bc990abafd982bdcd217c58bc1e0679a/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.reverse/insn-reverse.exp: move: x/i $pc
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/98/988b7300bc990abafd982bdcd217c58bc1e0679a//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/98/988b7300bc990abafd982bdcd217c58bc1e0679a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-12 7:18 [binutils-gdb] gdb: rename partial symtab expand functions of debug info readers using legacy_psymtab gdb-buildbot
@ 2020-04-17 21:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-17 21:31 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/2472
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
69b037c30cadea06c3dc7f83e427d0f729c201cd
Subject of commit:
gdb: rename partial symtab expand functions of debug info readers using legacy_psymtab
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/69/69b037c30cadea06c3dc7f83e427d0f729c201cd/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================
*** 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/69/69b037c30cadea06c3dc7f83e427d0f729c201cd//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/69/69b037c30cadea06c3dc7f83e427d0f729c201cd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-12 4:35 [binutils-gdb] gdb: rename partial_symtab::read_dependencies to expand_dependencies gdb-buildbot
@ 2020-04-17 19:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-17 19:13 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/2471
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
48993951ce343e397c4250c43c1708fffab01ac1
Subject of commit:
gdb: rename partial_symtab::read_dependencies to expand_dependencies
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/48/48993951ce343e397c4250c43c1708fffab01ac1/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/48/48993951ce343e397c4250c43c1708fffab01ac1//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/48/48993951ce343e397c4250c43c1708fffab01ac1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-11 14:29 [binutils-gdb] Fix comment in dwarf2/attribute.h gdb-buildbot
@ 2020-04-17 4:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-17 4:22 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/2468
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
4d1b9ab645d9ce72aad15011264dd9b2e52a57e8
Subject of commit:
Fix comment in dwarf2/attribute.h
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4d/4d1b9ab645d9ce72aad15011264dd9b2e52a57e8/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/4d/4d1b9ab645d9ce72aad15011264dd9b2e52a57e8//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/4d/4d1b9ab645d9ce72aad15011264dd9b2e52a57e8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-11 10:01 [binutils-gdb] Always fix system DLL paths for 32bit programs gdb-buildbot
@ 2020-04-16 23:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-16 23:46 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/2466
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
ebea76263935aba585f8f8b1d27b13737e231eec
Subject of commit:
Always fix system DLL paths for 32bit programs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/eb/ebea76263935aba585f8f8b1d27b13737e231eec/
*** 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/eb/ebea76263935aba585f8f8b1d27b13737e231eec//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/eb/ebea76263935aba585f8f8b1d27b13737e231eec//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-11 5:22 [binutils-gdb] Support AT_BSDFLAGS on FreeBSD gdb-buildbot
@ 2020-04-16 19:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-16 19:10 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/2464
Author:
John Baldwin <jhb@FreeBSD.org>
Commit tested:
a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1
Subject of commit:
Support AT_BSDFLAGS on FreeBSD.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1//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/a8/a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-11 2:49 [binutils-gdb] Change two functions to be methods on struct attribute gdb-buildbot
@ 2020-04-16 16:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-16 16:52 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/2463
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
0826b30a9fa085ccee574465523d0560a4a01198
Subject of commit:
Change two functions to be methods on struct attribute
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/08/0826b30a9fa085ccee574465523d0560a4a01198/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/08/0826b30a9fa085ccee574465523d0560a4a01198//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/08/0826b30a9fa085ccee574465523d0560a4a01198//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-11 0:00 [binutils-gdb] Move DWARF-constant stringifying code to new file gdb-buildbot
@ 2020-04-16 14:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-16 14:34 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/2462
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
2b2558bfacba3813863da6728c021eb89fa34677
Subject of commit:
Move DWARF-constant stringifying code to new file
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2b/2b2558bfacba3813863da6728c021eb89fa34677/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: can't run to main
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue to breakpoint: child_function
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: detach child
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: switch to parent
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new UNRESOLVED: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
new FAIL: gdb.trace/trace-mt.exp: step over trace: can't run to main
PASS -> UNRESOLVED: gdb.trace/trace-mt.exp: step over trace: set non-stop 0
==============================================
*** 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/2b/2b2558bfacba3813863da6728c021eb89fa34677//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/2b/2b2558bfacba3813863da6728c021eb89fa34677//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-10 21:07 [binutils-gdb] Rewrite new die_info methods gdb-buildbot
@ 2020-04-16 12:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-16 12:11 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/2461
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
eeb647814fbfd71dddea45f36cb4847341f5cde7
Subject of commit:
Rewrite new die_info methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ee/eeb647814fbfd71dddea45f36cb4847341f5cde7/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ee/eeb647814fbfd71dddea45f36cb4847341f5cde7//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/ee/eeb647814fbfd71dddea45f36cb4847341f5cde7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-10 15:27 [binutils-gdb] Remove sibling_die gdb-buildbot
@ 2020-04-16 7:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-16 7: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/2459
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
436c571c6afc8c5affe36327ab363b98ec9adb2d
Subject of commit:
Remove sibling_die
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/43/436c571c6afc8c5affe36327ab363b98ec9adb2d/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/43/436c571c6afc8c5affe36327ab363b98ec9adb2d//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/43/436c571c6afc8c5affe36327ab363b98ec9adb2d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-10 12:55 [binutils-gdb] Change dwarf2_attr_no_follow to be a method gdb-buildbot
@ 2020-04-16 5:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-16 5:17 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/2458
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
052c8bb83a515768cd6af2f3707b6e05854cac54
Subject of commit:
Change dwarf2_attr_no_follow to be a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/05/052c8bb83a515768cd6af2f3707b6e05854cac54/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/05/052c8bb83a515768cd6af2f3707b6e05854cac54//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/05/052c8bb83a515768cd6af2f3707b6e05854cac54//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-10 11:01 [binutils-gdb] Remove dwarf2_cu::base_known gdb-buildbot
@ 2020-04-16 2:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-16 2:59 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/2457
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
2b24b6e4a6d03efc3e76ce6912394e4a86cc387b
Subject of commit:
Remove dwarf2_cu::base_known
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2b/2b24b6e4a6d03efc3e76ce6912394e4a86cc387b/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2b/2b24b6e4a6d03efc3e76ce6912394e4a86cc387b//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/2b/2b24b6e4a6d03efc3e76ce6912394e4a86cc387b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-10 5:55 [binutils-gdb] Move more code to line-header.c gdb-buildbot
@ 2020-04-15 22:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-15 22:22 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/2455
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
0df7ad3a675692fcc75c85c43e475015b87a297e
Subject of commit:
Move more code to line-header.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0d/0df7ad3a675692fcc75c85c43e475015b87a297e/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/exec_changed.exp: start second
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/completion.exp: complete 'info registers '
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new FAIL: gdb.base/foll-exec-mode.exp: same,continue,no_infswitch: use correct executable
new FAIL: gdb.base/foll-exec-mode.exp: same,next,no_infswitch: use correct executable
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new FAIL: gdb.base/gdbinit-history.exp: GDBHISTFILE is empty: show commands
new FAIL: gdb.base/gdbinit-history.exp: load GDBHISTFILE history file: show commands
new FAIL: gdb.base/gdbinit-history.exp: load default history file: show commands
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=off: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new FAIL: gdb.opt/inline-break.exp: cmd=break: bt stopped in inline_func1
new FAIL: gdb.opt/inline-break.exp: cmd=break: continue to breakpoint: inline_func1
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: could not run to main
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: delete all breakpoints in delete_breakpoints
new FAIL: gdb.opt/inline-cmds.exp: backtrace at inlined_fn from noinline
new FAIL: gdb.opt/inline-cmds.exp: inlined_fn from noinline inlined
new FAIL: gdb.opt/inline-cmds.exp: main not inlined
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new FAIL: gdb.opt/inline-cmds.exp: noinline from outer_inline1 not inlined
new FAIL: gdb.opt/inline-cmds.exp: outer_inline1 inlined
new FAIL: gdb.opt/inline-cmds.exp: outer_inline2 inlined
new FAIL: gdb.opt/inline-cmds.exp: up from outer_inline2
new FAIL: gdb.opt/inline-cmds.exp: up to noinline
new FAIL: gdb.opt/inline-cmds.exp: up to outer_inline1
new FAIL: gdb.opt/inline-cmds.exp: up to outer_inline2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-frame-inline.exp: info frame
new FAIL: gdb.python/py-frame-inline.exp: python print
new FAIL: gdb.python/py-frame-inline.exp: up
new FAIL: gdb.python/tui-window.exp: Window was updated
new FAIL: gdb.reverse/insn-reverse.exp: move: capture_command_output for info all-registers
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 0:mov x0, sp
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 10:adrp x0, 0xaaaaaaabb000
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 11:add x0, x0, #0x10
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 12:ldr w0, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 13:ldr w1, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 14:cmp w1, w0
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 15:b.lt 0xaaaaaaaaa8a8 <main+24> // b.tstop
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 16:adrp x0, 0xaaaaaaabb000
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 17:add x0, x0, #0x18
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 18:ldrsw x1, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 19:ldr x0, [x0, x1, lsl #3]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 1:ld1 {v1.8b}, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 20:blr x0
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 21:sub sp, sp, #0x30
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 22:mov w0, #0x42f60000 // #1123418112
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 23:fmov s0, w0
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 24:str s0, [sp, #4]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 2:ld1 {v2.8b, v3.8b}, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 3:ld1 {v3.8b-v5.8b}, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 4:nop
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 5:add sp, sp, #0x20
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 6:ret
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 7:ldr w0, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 8:add w0, w0, #0x1
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 9:str w0, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: reverse-stepi
new FAIL: gdb.reverse/insn-reverse.exp: move: si
new FAIL: gdb.reverse/insn-reverse.exp: move: x/i $pc
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: ctf: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: tfile: info args
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/0d/0df7ad3a675692fcc75c85c43e475015b87a297e//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/0d/0df7ad3a675692fcc75c85c43e475015b87a297e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-10 0:04 [binutils-gdb] Trivial fix in dwarf_decode_macro_bytes gdb-buildbot
@ 2020-04-15 17:49 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-15 17:49 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/2453
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
2ef46c2fbbd18c3f411ef294c2c6694a1308a5a5
Subject of commit:
Trivial fix in dwarf_decode_macro_bytes
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2e/2ef46c2fbbd18c3f411ef294c2c6694a1308a5a5/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/2e/2ef46c2fbbd18c3f411ef294c2c6694a1308a5a5//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/2e/2ef46c2fbbd18c3f411ef294c2c6694a1308a5a5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-09 22:15 [binutils-gdb] Use a const dwarf2_section_info in macro reader gdb-buildbot
@ 2020-04-15 15:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-15 15:31 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/2452
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
4f9c1eda9ffc161015b6d9cc6dc958b67de680e6
Subject of commit:
Use a const dwarf2_section_info in macro reader
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4f/4f9c1eda9ffc161015b6d9cc6dc958b67de680e6/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/exec_changed.exp: start second
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/completion.exp: complete 'info registers '
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new FAIL: gdb.base/foll-exec-mode.exp: same,continue,no_infswitch: use correct executable
new FAIL: gdb.base/foll-exec-mode.exp: same,next,no_infswitch: use correct executable
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new FAIL: gdb.base/gdbinit-history.exp: GDBHISTFILE is empty: show commands
new FAIL: gdb.base/gdbinit-history.exp: load GDBHISTFILE history file: show commands
new FAIL: gdb.base/gdbinit-history.exp: load default history file: show commands
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=off: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new FAIL: gdb.opt/inline-break.exp: cmd=break: bt stopped in inline_func1
new FAIL: gdb.opt/inline-break.exp: cmd=break: continue to breakpoint: inline_func1
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: could not run to main
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: delete all breakpoints in delete_breakpoints
new FAIL: gdb.opt/inline-cmds.exp: backtrace at inlined_fn from noinline
new FAIL: gdb.opt/inline-cmds.exp: inlined_fn from noinline inlined
new FAIL: gdb.opt/inline-cmds.exp: main not inlined
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new FAIL: gdb.opt/inline-cmds.exp: noinline from outer_inline1 not inlined
new FAIL: gdb.opt/inline-cmds.exp: outer_inline1 inlined
new FAIL: gdb.opt/inline-cmds.exp: outer_inline2 inlined
new FAIL: gdb.opt/inline-cmds.exp: up from outer_inline2
new FAIL: gdb.opt/inline-cmds.exp: up to noinline
new FAIL: gdb.opt/inline-cmds.exp: up to outer_inline1
new FAIL: gdb.opt/inline-cmds.exp: up to outer_inline2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-frame-inline.exp: info frame
new FAIL: gdb.python/py-frame-inline.exp: python print
new FAIL: gdb.python/py-frame-inline.exp: up
new FAIL: gdb.python/tui-window.exp: Window was updated
new FAIL: gdb.reverse/insn-reverse.exp: move: capture_command_output for info all-registers
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 0:mov x0, sp
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 10:adrp x0, 0xaaaaaaabb000
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 11:add x0, x0, #0x10
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 12:ldr w0, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 13:ldr w1, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 14:cmp w1, w0
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 15:b.lt 0xaaaaaaaaa8a8 <main+24> // b.tstop
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 16:adrp x0, 0xaaaaaaabb000
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 17:add x0, x0, #0x18
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 18:ldrsw x1, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 19:ldr x0, [x0, x1, lsl #3]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 1:ld1 {v1.8b}, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 20:blr x0
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 21:sub sp, sp, #0x30
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 22:mov w0, #0x42f60000 // #1123418112
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 23:fmov s0, w0
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 24:str s0, [sp, #4]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 2:ld1 {v2.8b, v3.8b}, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 3:ld1 {v3.8b-v5.8b}, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 4:nop
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 5:add sp, sp, #0x20
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 6:ret
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 7:ldr w0, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 8:add w0, w0, #0x1
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 9:str w0, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: reverse-stepi
new FAIL: gdb.reverse/insn-reverse.exp: move: si
new FAIL: gdb.reverse/insn-reverse.exp: move: x/i $pc
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: can't run to main
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new FAIL: gdb.threads/tls.exp: print a_thread_local
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: ctf: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: info args
new FAIL: gdb.trace/unavailable.exp: unavailable arguments: tfile: info args
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
==============================================
*** 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/4f/4f9c1eda9ffc161015b6d9cc6dc958b67de680e6//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/4f/4f9c1eda9ffc161015b6d9cc6dc958b67de680e6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-09 18:12 [binutils-gdb] Make some line_header methods const gdb-buildbot
@ 2020-04-15 10:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-15 10:58 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/2450
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
8844c11b8bc1cfa70a63a8875e08345c96abecfe
Subject of commit:
Make some line_header methods const
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/88/8844c11b8bc1cfa70a63a8875e08345c96abecfe/
*** 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/88/8844c11b8bc1cfa70a63a8875e08345c96abecfe//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/88/8844c11b8bc1cfa70a63a8875e08345c96abecfe//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-09 15:52 [binutils-gdb] Move code to new file dwarf2/macro.c gdb-buildbot
@ 2020-04-15 8:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-15 8:40 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/2449
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c90ec28ae44ebf72d57d58439d02fc5aab90f1f6
Subject of commit:
Move code to new file dwarf2/macro.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c9/c90ec28ae44ebf72d57d58439d02fc5aab90f1f6/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c9/c90ec28ae44ebf72d57d58439d02fc5aab90f1f6//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/c9/c90ec28ae44ebf72d57d58439d02fc5aab90f1f6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-09 13:46 [binutils-gdb] Add dwarf2_section_info::read_string method gdb-buildbot
@ 2020-04-15 6:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-15 6:22 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/2448
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
4f44ae6c69b839712a33a46aaa62d58d2b16b4ca
Subject of commit:
Add dwarf2_section_info::read_string method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4f/4f44ae6c69b839712a33a46aaa62d58d2b16b4ca/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/4f/4f44ae6c69b839712a33a46aaa62d58d2b16b4ca//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/4f/4f44ae6c69b839712a33a46aaa62d58d2b16b4ca//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-09 11:35 [binutils-gdb] Convert dwarf2_section_buffer_overflow_complaint to a method gdb-buildbot
@ 2020-04-15 4:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-15 4:05 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/2447
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
a0194fa8f23c64bef0f4b4bb4a76e9c64f003169
Subject of commit:
Convert dwarf2_section_buffer_overflow_complaint to a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a0/a0194fa8f23c64bef0f4b4bb4a76e9c64f003169/
*** 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/a0/a0194fa8f23c64bef0f4b4bb4a76e9c64f003169//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/a0/a0194fa8f23c64bef0f4b4bb4a76e9c64f003169//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-09 5:29 [binutils-gdb] Change dwarf_decode_macro_bytes calling convention gdb-buildbot
@ 2020-04-14 21:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-14 21:11 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/2444
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
bf80d710525ba743d0046bf1f9cab6a019d7c616
Subject of commit:
Change dwarf_decode_macro_bytes calling convention
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bf/bf80d710525ba743d0046bf1f9cab6a019d7c616/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/bf/bf80d710525ba743d0046bf1f9cab6a019d7c616//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/bf/bf80d710525ba743d0046bf1f9cab6a019d7c616//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-09 4:01 [binutils-gdb] Add dwz.c and dwz_file::read_string gdb-buildbot
@ 2020-04-14 18:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-14 18:53 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/2443
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
0314b3901c9cdc21ef9f0c1b0b88528d6f8d3073
Subject of commit:
Add dwz.c and dwz_file::read_string
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/03/0314b3901c9cdc21ef9f0c1b0b88528d6f8d3073/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new UNRESOLVED: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/03/0314b3901c9cdc21ef9f0c1b0b88528d6f8d3073//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/03/0314b3901c9cdc21ef9f0c1b0b88528d6f8d3073//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-08 23:51 [binutils-gdb] Revert earlier delta adding bfd_coff_get_internal_extra_pe_aouthdr() function gdb-buildbot
@ 2020-04-14 14:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-14 14:16 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/2441
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
aa49fc22c13a685452a2073e252d8b34ecbcc012
Subject of commit:
Revert earlier delta adding bfd_coff_get_internal_extra_pe_aouthdr() function.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/aa/aa49fc22c13a685452a2073e252d8b34ecbcc012/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/aa/aa49fc22c13a685452a2073e252d8b34ecbcc012//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/aa/aa49fc22c13a685452a2073e252d8b34ecbcc012//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-08 21:24 [binutils-gdb] Re: H8300 use of uninitialised value gdb-buildbot
@ 2020-04-14 11:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-14 11:55 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/2440
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
832a580781060f54731fcf654d76ac1332037a47
Subject of commit:
Re: H8300 use of uninitialised value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/83/832a580781060f54731fcf654d76ac1332037a47/
*** 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 -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
==============================================
*** 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/83/832a580781060f54731fcf654d76ac1332037a47//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/83/832a580781060f54731fcf654d76ac1332037a47//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-08 17:03 [binutils-gdb] Re: ARC: Use of uninitialised value gdb-buildbot
@ 2020-04-14 7:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-14 7:22 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/2438
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
4c4addbe57711f1cdbb72305b8cbd03a68ae2e34
Subject of commit:
Re: ARC: Use of uninitialised value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4c/4c4addbe57711f1cdbb72305b8cbd03a68ae2e34/
*** 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/4c/4c4addbe57711f1cdbb72305b8cbd03a68ae2e34//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/4c/4c4addbe57711f1cdbb72305b8cbd03a68ae2e34//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-08 10:50 [binutils-gdb] Fix WOW64 process system DLL paths gdb-buildbot
@ 2020-04-14 0:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-14 0:29 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/2435
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
d503b685c6b7384b389767d5153235039e2b8fc4
Subject of commit:
Fix WOW64 process system DLL paths
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d5/d503b685c6b7384b389767d5153235039e2b8fc4/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/d5/d503b685c6b7384b389767d5153235039e2b8fc4//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/d5/d503b685c6b7384b389767d5153235039e2b8fc4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-08 6:42 [binutils-gdb] [gdb] Print user/includes fields for maint commands gdb-buildbot
@ 2020-04-13 19:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-13 19:52 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/2433
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
7b1eff95bed765cb20dd3168cb99896a91fcdca7
Subject of commit:
[gdb] Print user/includes fields for maint commands
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7b/7b1eff95bed765cb20dd3168cb99896a91fcdca7/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/7b/7b1eff95bed765cb20dd3168cb99896a91fcdca7//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/7b/7b1eff95bed765cb20dd3168cb99896a91fcdca7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-08 4:45 [binutils-gdb] gdb/riscv: Apply NaN boxing when writing return values into registers gdb-buildbot
@ 2020-04-13 17:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-13 17: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/2432
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
dd8953924b0966e363c27ee38a0663c08f742fa0
Subject of commit:
gdb/riscv: Apply NaN boxing when writing return values into registers
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/dd/dd8953924b0966e363c27ee38a0663c08f742fa0/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
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/dd/dd8953924b0966e363c27ee38a0663c08f742fa0//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/dd/dd8953924b0966e363c27ee38a0663c08f742fa0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-08 2:30 [binutils-gdb] arc: Use correct string when printing bfd DEBUG data gdb-buildbot
@ 2020-04-13 15:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-13 15:17 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/2431
Author:
Shahab Vahedi <shahab@synopsys.com>
Commit tested:
cf2611febcfa6b7c680de31071c5658e7463eee4
Subject of commit:
arc: Use correct string when printing bfd DEBUG data
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/cf/cf2611febcfa6b7c680de31071c5658e7463eee4/
*** 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 -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new UNRESOLVED: gdb.trace/trace-break.exp: 4 ftrace on: can't run to main
new UNRESOLVED: gdb.trace/trace-break.exp: 4 ftrace on: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.tui/tui-missing-src.exp: Back in main
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: check source box is empty after return
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: checking if inside f2
PASS -> FAIL: gdb.tui/tui-missing-src.exp: f2.c must be displayed in source window
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: maint set tui-resize-message on
PASS -> UNRESOLVED: gdb.tui/tui-missing-src.exp: set tui border-kind ascii
new UNRESOLVED: gdb.tui/tui-missing-src.exp: verify tui support
==============================================
*** 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/cf/cf2611febcfa6b7c680de31071c5658e7463eee4//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/cf/cf2611febcfa6b7c680de31071c5658e7463eee4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-07 22:20 [binutils-gdb] bfd: Add a bfd_boolean argument to bfd_get_symbol_version_string gdb-buildbot
@ 2020-04-13 10:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-13 10:38 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/2429
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
1081065c519d1bfc3847bf4b0a0ce4bc3224bcd3
Subject of commit:
bfd: Add a bfd_boolean argument to bfd_get_symbol_version_string
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/10/1081065c519d1bfc3847bf4b0a0ce4bc3224bcd3/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/10/1081065c519d1bfc3847bf4b0a0ce4bc3224bcd3//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/10/1081065c519d1bfc3847bf4b0a0ce4bc3224bcd3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-07 20:33 [binutils-gdb] Uninitialised memory read in z80-dis.c gdb-buildbot
@ 2020-04-13 8:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-13 8:20 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/2428
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
a18cd0cab43f45b05e9f8bcbf8fed1d67834442d
Subject of commit:
Uninitialised memory read in z80-dis.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a1/a18cd0cab43f45b05e9f8bcbf8fed1d67834442d/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: advance to begin
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: cease trace debugging
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: collected local char
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: collected local double
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: collected local float
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: collected local int
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: collected local member char
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: collected local member double
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: collected local member float
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: collected local member int
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: collected locarray #0
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: collected locarray #1
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: collected locarray #2
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: collected locarray #3
PASS -> UNRESOLVED: gdb.trace/collection.exp: collect auto locals individually: find tracepoint line
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: run trace experiment
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: start trace experiment
PASS -> FAIL: gdb.trace/collection.exp: collect auto locals individually: tfind test frame
new UNRESOLVED: gdb.trace/pending.exp: ftrace resolved_in_trace: can't run to main
new UNRESOLVED: gdb.trace/pending.exp: ftrace resolved_in_trace: delete all breakpoints in delete_breakpoints
new FAIL: gdb.trace/pending.exp: ftrace works: continue to marker
PASS -> FAIL: gdb.trace/pending.exp: ftrace works: start trace experiment
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 0
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 1
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 2
==============================================
*** 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/a1/a18cd0cab43f45b05e9f8bcbf8fed1d67834442d//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/a1/a18cd0cab43f45b05e9f8bcbf8fed1d67834442d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-07 12:06 [binutils-gdb] bfd: Change num_group to unsigned int gdb-buildbot
@ 2020-04-12 23:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-12 23:08 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/2424
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
cda7e5603f6efd7c3716e45cc6ea11b70dd8daae
Subject of commit:
bfd: Change num_group to unsigned int
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/cd/cda7e5603f6efd7c3716e45cc6ea11b70dd8daae/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/cd/cda7e5603f6efd7c3716e45cc6ea11b70dd8daae//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/cd/cda7e5603f6efd7c3716e45cc6ea11b70dd8daae//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-07 6:14 [binutils-gdb] [gdb] Print user for maint info psymtabs gdb-buildbot
@ 2020-04-12 16:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-12 16:15 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/2421
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
a64fafb54577a87919a600474a3e4abe3510341a
Subject of commit:
[gdb] Print user for maint info psymtabs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a6/a64fafb54577a87919a600474a3e4abe3510341a/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
==============================================
*** 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/a6/a64fafb54577a87919a600474a3e4abe3510341a//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/a6/a64fafb54577a87919a600474a3e4abe3510341a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-07 2:06 [binutils-gdb] Mention .tdata in comment in _bfd_elf_tls_setup() gdb-buildbot
@ 2020-04-12 11:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-12 11:39 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/2419
Author:
Sebastian Huber <sebastian.huber@embedded-brains.de>
Commit tested:
fdde2fb60cc2d0c60d9d3f085a7b6c648376991e
Subject of commit:
Mention .tdata in comment in _bfd_elf_tls_setup()
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fd/fdde2fb60cc2d0c60d9d3f085a7b6c648376991e/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/fd/fdde2fb60cc2d0c60d9d3f085a7b6c648376991e//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/fd/fdde2fb60cc2d0c60d9d3f085a7b6c648376991e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-06 21:59 [binutils-gdb] i386msdos uninitialised read gdb-buildbot
@ 2020-04-12 7:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-12 7:03 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/2417
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
5e737279c6e832a757f0326128e5a5f96fbdd291
Subject of commit:
i386msdos uninitialised read
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5e/5e737279c6e832a757f0326128e5a5f96fbdd291/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================
*** 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/5e/5e737279c6e832a757f0326128e5a5f96fbdd291//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/5e/5e737279c6e832a757f0326128e5a5f96fbdd291//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-06 20:12 [binutils-gdb] gdb/testsuite: Remove hard coded addresses from expected results gdb-buildbot
@ 2020-04-12 4:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-12 4:42 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/2416
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
5935fd15306c26ead8274cbeab3287770f2ac92a
Subject of commit:
gdb/testsuite: Remove hard coded addresses from expected results
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/59/5935fd15306c26ead8274cbeab3287770f2ac92a/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/59/5935fd15306c26ead8274cbeab3287770f2ac92a//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/59/5935fd15306c26ead8274cbeab3287770f2ac92a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-06 17:30 [binutils-gdb] XCOFF64 uninitialised read gdb-buildbot
@ 2020-04-12 2:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-12 2:25 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/2415
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
c15a8f173e9b01dd962ba857b7deb547d34bca5b
Subject of commit:
XCOFF64 uninitialised read
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c1/c15a8f173e9b01dd962ba857b7deb547d34bca5b/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.trace/ftrace.exp: advance through tracing
==============================================
*** 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/c1/c15a8f173e9b01dd962ba857b7deb547d34bca5b//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/c1/c15a8f173e9b01dd962ba857b7deb547d34bca5b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-06 15:42 [binutils-gdb] H8300 use of uninitialised value gdb-buildbot
@ 2020-04-12 0:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-12 0:07 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/2414
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
57cb32b3c366585f7fafd6a741771ce826ba95f3
Subject of commit:
H8300 use of uninitialised value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/57/57cb32b3c366585f7fafd6a741771ce826ba95f3/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.reverse/insn-reverse.exp: move: si
==============================================
*** 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/57/57cb32b3c366585f7fafd6a741771ce826ba95f3//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/57/57cb32b3c366585f7fafd6a741771ce826ba95f3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-06 13:12 [binutils-gdb] ARC: Use of uninitialised value gdb-buildbot
@ 2020-04-11 21:49 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-11 21:49 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/2413
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
beea5cc1bc2249389dc77ea0c86ab82dafd05bb5
Subject of commit:
ARC: Use of uninitialised value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/be/beea5cc1bc2249389dc77ea0c86ab82dafd05bb5/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.reverse/insn-reverse.exp: move: si
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/be/beea5cc1bc2249389dc77ea0c86ab82dafd05bb5//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/be/beea5cc1bc2249389dc77ea0c86ab82dafd05bb5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-05 21:48 [binutils-gdb] Make dwarf2_evaluate_property parameter const gdb-buildbot
@ 2020-04-11 2:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-11 2:20 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/2408
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
fe26d3a34a223a86fddb59ed70a621a13940a088
Subject of commit:
Make dwarf2_evaluate_property parameter const
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fe/fe26d3a34a223a86fddb59ed70a621a13940a088/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/fe/fe26d3a34a223a86fddb59ed70a621a13940a088//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/fe/fe26d3a34a223a86fddb59ed70a621a13940a088//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-05 20:00 [binutils-gdb] [gdb/testsuite] Fix gdb.threads/omp-par-scope.exp XPASS gdb-buildbot
@ 2020-04-11 0:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-11 0:02 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/2407
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
c623cc90890de9958bcee382cc60ff1b605532ab
Subject of commit:
[gdb/testsuite] Fix gdb.threads/omp-par-scope.exp XPASS
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c6/c623cc90890de9958bcee382cc60ff1b605532ab/
*** Diff to previous build ***
==============================================
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
==============================================
*** 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/c6/c623cc90890de9958bcee382cc60ff1b605532ab//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/c6/c623cc90890de9958bcee382cc60ff1b605532ab//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-05 18:13 [binutils-gdb] gdb: remove HAVE_DECL_PTRACE gdb-buildbot
@ 2020-04-10 21:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-10 21:44 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/2406
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
c884cc46193c98fd0b90ce8a79c081f6a1c18cc6
Subject of commit:
gdb: remove HAVE_DECL_PTRACE
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c8/c884cc46193c98fd0b90ce8a79c081f6a1c18cc6/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 0:mov x0, sp
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new UNRESOLVED: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/c8/c884cc46193c98fd0b90ce8a79c081f6a1c18cc6//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/c8/c884cc46193c98fd0b90ce8a79c081f6a1c18cc6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-05 16:01 [binutils-gdb] Update the return type of gdb_ptrace to be more flexible gdb-buildbot
@ 2020-04-10 19:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-10 19:26 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/2405
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
1ff700c202465275d1ca3aee4dd979db36274294
Subject of commit:
Update the return type of gdb_ptrace to be more flexible
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1f/1ff700c202465275d1ca3aee4dd979db36274294/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.reverse/insn-reverse.exp: move: compare registers on insn 0:mov x0, sp
==============================================
*** 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/1f/1ff700c202465275d1ca3aee4dd979db36274294//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/1f/1ff700c202465275d1ca3aee4dd979db36274294//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-05 11:56 [binutils-gdb] Avoid stringop-truncation errors gdb-buildbot
@ 2020-04-10 14:51 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-10 14:51 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/2403
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
f67210ff1c4200ea668189d086c6b39145cd876f
Subject of commit:
Avoid stringop-truncation errors
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f6/f67210ff1c4200ea668189d086c6b39145cd876f/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f6/f67210ff1c4200ea668189d086c6b39145cd876f//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/f6/f67210ff1c4200ea668189d086c6b39145cd876f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-05 10:19 [binutils-gdb] Fix column alignment in "maint info line-table" gdb-buildbot
@ 2020-04-10 12:33 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-10 12:33 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/2402
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
1773be9ea2207d42442222e6dc3c8fdbe638e28e
Subject of commit:
Fix column alignment in "maint info line-table"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/17/1773be9ea2207d42442222e6dc3c8fdbe638e28e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================
*** 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/17/1773be9ea2207d42442222e6dc3c8fdbe638e28e//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/17/1773be9ea2207d42442222e6dc3c8fdbe638e28e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-05 8:19 [binutils-gdb] Fix Ada val_print removal regression gdb-buildbot
@ 2020-04-10 10:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-10 10:15 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/2401
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
70304be939301a91dade0dc7d4234c081372bd24
Subject of commit:
Fix Ada val_print removal regression
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/70/70304be939301a91dade0dc7d4234c081372bd24/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/70/70304be939301a91dade0dc7d4234c081372bd24//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/70/70304be939301a91dade0dc7d4234c081372bd24//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-05 6:28 [binutils-gdb] Inherit ppc_nbsd_nat_target from nbsd_nat_target gdb-buildbot
@ 2020-04-10 7:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-10 7:57 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/2400
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
9faa006d11a5e08264a007463435f84b77864c9c
Subject of commit:
Inherit ppc_nbsd_nat_target from nbsd_nat_target
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9f/9faa006d11a5e08264a007463435f84b77864c9c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================
*** 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/9f/9faa006d11a5e08264a007463435f84b77864c9c//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/9f/9faa006d11a5e08264a007463435f84b77864c9c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-05 4:40 [binutils-gdb] Add support for NetBSD threads in hppa-nbsd-nat.c gdb-buildbot
@ 2020-04-10 5:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-10 5:40 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/2399
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
4a90f062056e842c3f53293482e0039db0da3245
Subject of commit:
Add support for NetBSD threads in hppa-nbsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4a/4a90f062056e842c3f53293482e0039db0da3245/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/4a/4a90f062056e842c3f53293482e0039db0da3245//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/4a/4a90f062056e842c3f53293482e0039db0da3245//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-05 2:55 [binutils-gdb] [gdb/testsuite] Fix timeouts in gdb.threads/step-over-*.exp gdb-buildbot
@ 2020-04-10 3:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-10 3:22 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/2398
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
0dd7b8f788b8d5239800d59f97b43186dcf425e2
Subject of commit:
[gdb/testsuite] Fix timeouts in gdb.threads/step-over-*.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0d/0dd7b8f788b8d5239800d59f97b43186dcf425e2/
*** 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/0d/0dd7b8f788b8d5239800d59f97b43186dcf425e2//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/0d/0dd7b8f788b8d5239800d59f97b43186dcf425e2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-05 0:32 [binutils-gdb] Add support for NetBSD threads in ppc-nbsd-nat.c gdb-buildbot
@ 2020-04-10 1:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-10 1:05 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/2397
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
c7da12c72c2eeb4f62e772df5cbb1f50f35a84ee
Subject of commit:
Add support for NetBSD threads in ppc-nbsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c7/c7da12c72c2eeb4f62e772df5cbb1f50f35a84ee/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c7/c7da12c72c2eeb4f62e772df5cbb1f50f35a84ee//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/c7/c7da12c72c2eeb4f62e772df5cbb1f50f35a84ee//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-04 22:44 [binutils-gdb] plugin: Don't invoke LTO-wrapper gdb-buildbot
@ 2020-04-09 22:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-09 22:47 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/2396
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
3d98c46092341c1373d960d0a66ca502d5b7ee7f
Subject of commit:
plugin: Don't invoke LTO-wrapper
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3d/3d98c46092341c1373d960d0a66ca502d5b7ee7f/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/3d/3d98c46092341c1373d960d0a66ca502d5b7ee7f//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/3d/3d98c46092341c1373d960d0a66ca502d5b7ee7f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-04 18:44 [binutils-gdb] XCOFF uninitialized read gdb-buildbot
@ 2020-04-09 18:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-09 18:11 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/2394
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
67338173a49204a2097ca1e2c63c6bc1fe972c3e
Subject of commit:
XCOFF uninitialized read
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/67/67338173a49204a2097ca1e2c63c6bc1fe972c3e/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/67/67338173a49204a2097ca1e2c63c6bc1fe972c3e//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/67/67338173a49204a2097ca1e2c63c6bc1fe972c3e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-04 12:57 [binutils-gdb] PowerPC disassembly of odd sized sections gdb-buildbot
@ 2020-04-09 11:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-09 11:17 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/2391
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
833d919c93d52644173d587a6fc8e4dd36edc49e
Subject of commit:
PowerPC disassembly of odd sized sections
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/83/833d919c93d52644173d587a6fc8e4dd36edc49e/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/83/833d919c93d52644173d587a6fc8e4dd36edc49e//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/83/833d919c93d52644173d587a6fc8e4dd36edc49e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-04 9:04 [binutils-gdb] Disable get_ptrace_pid for NetBSD gdb-buildbot
@ 2020-04-09 6:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-09 6:42 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/2389
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
f09db380942d1393e6f60d1ecaa7d4b6edfaaecf
Subject of commit:
Disable get_ptrace_pid for NetBSD
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f0/f09db380942d1393e6f60d1ecaa7d4b6edfaaecf/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f0/f09db380942d1393e6f60d1ecaa7d4b6edfaaecf//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/f0/f09db380942d1393e6f60d1ecaa7d4b6edfaaecf//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-04 7:16 [binutils-gdb] Fix discrepancies in nm's --line-number output by adding support for the DW_AT_specification DWARF Attttribute gdb-buildbot
@ 2020-04-09 4:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-09 4:24 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/2388
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
f3a08f77787cfe1b9edb7b5ab82ce7a2d527c8cf
Subject of commit:
Fix discrepancies in nm's --line-number output by adding support for the DW_AT_specification DWARF Attttribute.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f3/f3a08f77787cfe1b9edb7b5ab82ce7a2d527c8cf/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/f3/f3a08f77787cfe1b9edb7b5ab82ce7a2d527c8cf//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/f3/f3a08f77787cfe1b9edb7b5ab82ce7a2d527c8cf//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-04 5:30 [binutils-gdb] Include: Sync lto-symtab.h and plugin-api.h with GCC gdb-buildbot
@ 2020-04-09 2:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-09 2:07 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/2387
Author:
Martin Liska <mliska@suse.cz>
Commit tested:
3734bec8336f6f33927ab99460cb681035c2ca4f
Subject of commit:
Include: Sync lto-symtab.h and plugin-api.h with GCC
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/37/3734bec8336f6f33927ab99460cb681035c2ca4f/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/37/3734bec8336f6f33927ab99460cb681035c2ca4f//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/37/3734bec8336f6f33927ab99460cb681035c2ca4f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-04 3:39 [binutils-gdb] [AArch64] When unavailable, fetch VG from ptrace gdb-buildbot
@ 2020-04-08 23:49 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-08 23:49 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/2386
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
2d07da271eee9a83a1f5c975204d7d6dfd66fe1f
Subject of commit:
[AArch64] When unavailable, fetch VG from ptrace.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2d/2d07da271eee9a83a1f5c975204d7d6dfd66fe1f/
*** 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-extended-gdbserver-m64/2d/2d07da271eee9a83a1f5c975204d7d6dfd66fe1f//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/2d/2d07da271eee9a83a1f5c975204d7d6dfd66fe1f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-04 1:42 [binutils-gdb] Fix assertion failure in the BFD library when called to parse a file containing corrupt ELF group information gdb-buildbot
@ 2020-04-08 21:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-08 21:31 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/2385
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
6a541707f341275fa5081ec36cc6f2551042c21e
Subject of commit:
Fix assertion failure in the BFD library when called to parse a file containing corrupt ELF group information.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6a/6a541707f341275fa5081ec36cc6f2551042c21e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: 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-extended-gdbserver-m64/6a/6a541707f341275fa5081ec36cc6f2551042c21e//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/6a/6a541707f341275fa5081ec36cc6f2551042c21e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-03 23:08 [binutils-gdb] Avoid get_ptrace_pid() usage on NetBSD in x86-bsd-nat.c gdb-buildbot
@ 2020-04-08 18:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-08 18:55 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/2384
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
fcc7376e0a4c3a68ef0b9d12fcc3733416b1cc8c
Subject of commit:
Avoid get_ptrace_pid() usage on NetBSD in x86-bsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fc/fcc7376e0a4c3a68ef0b9d12fcc3733416b1cc8c/
*** 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/fc/fcc7376e0a4c3a68ef0b9d12fcc3733416b1cc8c//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/fc/fcc7376e0a4c3a68ef0b9d12fcc3733416b1cc8c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-03 18:52 [binutils-gdb] gdb/testsuite/fortran: Add mixed language stack test gdb-buildbot
@ 2020-04-08 14:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-08 14:19 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/2382
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
6b8c53f2f1c0cf5bee46120d892d4c72571375eb
Subject of commit:
gdb/testsuite/fortran: Add mixed language stack test
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6b/6b8c53f2f1c0cf5bee46120d892d4c72571375eb/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.reverse/insn-reverse.exp: move: x/i $pc
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
==============================================
*** 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/6b/6b8c53f2f1c0cf5bee46120d892d4c72571375eb//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/6b/6b8c53f2f1c0cf5bee46120d892d4c72571375eb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-03 17:03 [binutils-gdb] gdb: Remove C++ symbol aliases from completion list gdb-buildbot
@ 2020-04-08 12:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-08 12: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/2381
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
19a2740f7f2ea0f65745a3c00cf8a64647378aa3
Subject of commit:
gdb: Remove C++ symbol aliases from completion list
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/19/19a2740f7f2ea0f65745a3c00cf8a64647378aa3/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.reverse/insn-reverse.exp: move: x/i $pc
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/19/19a2740f7f2ea0f65745a3c00cf8a64647378aa3//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/19/19a2740f7f2ea0f65745a3c00cf8a64647378aa3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-03 14:34 [binutils-gdb] gdb: Restructure the completion_tracker class gdb-buildbot
@ 2020-04-08 9:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-08 9:43 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/2380
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
724fd9ba432a20ef2e3f2c0d6060bff131226816
Subject of commit:
gdb: Restructure the completion_tracker class
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/72/724fd9ba432a20ef2e3f2c0d6060bff131226816/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/completion.exp: complete 'info registers '
==============================================
*** 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/72/724fd9ba432a20ef2e3f2c0d6060bff131226816//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/72/724fd9ba432a20ef2e3f2c0d6060bff131226816//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-03 12:47 [binutils-gdb] [gdb/testsuite] Fix gdb.opt/inline-locals.exp KFAILs gdb-buildbot
@ 2020-04-08 7:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-08 7:26 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/2379
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
d8c8b84859d057c58c901c08367ecc9f8a9f09dc
Subject of commit:
[gdb/testsuite] Fix gdb.opt/inline-locals.exp KFAILs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d8/d8c8b84859d057c58c901c08367ecc9f8a9f09dc/
*** Diff to previous build ***
==============================================
KPASS -> KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================
*** 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/d8/d8c8b84859d057c58c901c08367ecc9f8a9f09dc//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/d8/d8c8b84859d057c58c901c08367ecc9f8a9f09dc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-03 10:27 [binutils-gdb] Additional c99 elfxx-riscv.c fix gdb-buildbot
@ 2020-04-08 5:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-08 5:08 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/2378
Author:
Sebastian Huber <sebastian.huber@embedded-brains.de>
Commit tested:
effc14f54c3fdcb700f22ce53cef97665c0fdf7f
Subject of commit:
Additional c99 elfxx-riscv.c fix
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/effc14f54c3fdcb700f22ce53cef97665c0fdf7f/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/ef/effc14f54c3fdcb700f22ce53cef97665c0fdf7f//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/ef/effc14f54c3fdcb700f22ce53cef97665c0fdf7f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-03 8:41 [binutils-gdb] [gdb/testsuite] Add test-case gdb.dwarf2/break-inline-psymtab.exp gdb-buildbot
@ 2020-04-08 2:51 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-08 2:51 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/2377
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
a9933ccf467ac771747db9dba541afdf1b72a3f8
Subject of commit:
[gdb/testsuite] Add test-case gdb.dwarf2/break-inline-psymtab.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a9/a9933ccf467ac771747db9dba541afdf1b72a3f8/
*** 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/a9/a9933ccf467ac771747db9dba541afdf1b72a3f8//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/a9/a9933ccf467ac771747db9dba541afdf1b72a3f8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-03 6:49 [binutils-gdb] Fix seg-fault in strip when copying a file containing corrupt secondary relocs gdb-buildbot
@ 2020-04-08 0:33 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-08 0:33 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/2376
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
ac4bf06ca22b641b10fe37763bf57e177ee22864
Subject of commit:
Fix seg-fault in strip when copying a file containing corrupt secondary relocs.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ac/ac4bf06ca22b641b10fe37763bf57e177ee22864/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: 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-extended-gdbserver-m64/ac/ac4bf06ca22b641b10fe37763bf57e177ee22864//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/ac/ac4bf06ca22b641b10fe37763bf57e177ee22864//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-03 5:08 [binutils-gdb] Non-contiguous memory regions support: Avoid calls to abort gdb-buildbot
@ 2020-04-07 22:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-07 22:14 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/2375
Author:
Christophe Lyon <christophe.lyon@linaro.org>
Commit tested:
53215f214c61b850085196a8d69774eed026ecd9
Subject of commit:
Non-contiguous memory regions support: Avoid calls to abort
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/53/53215f214c61b850085196a8d69774eed026ecd9/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/53/53215f214c61b850085196a8d69774eed026ecd9//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/53/53215f214c61b850085196a8d69774eed026ecd9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-03 2:49 [binutils-gdb] Namespace the reg class to avoid clashes with OS headers gdb-buildbot
@ 2020-04-07 19:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-07 19:56 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/2374
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
5a82b8a12b6a9b8167517ab1df1dcdcc4711ffda
Subject of commit:
Namespace the reg class to avoid clashes with OS headers
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5a/5a82b8a12b6a9b8167517ab1df1dcdcc4711ffda/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.reverse/insn-reverse.exp: move: x/i $pc
==============================================
*** 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/5a/5a82b8a12b6a9b8167517ab1df1dcdcc4711ffda//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/5a/5a82b8a12b6a9b8167517ab1df1dcdcc4711ffda//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-02 22:55 [binutils-gdb] Add support for NetBSD threads in i386-bsd-nat.c gdb-buildbot
@ 2020-04-07 17:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-07 17:39 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/2373
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
fb516a69133999df3e30fccb7c4f5759eb1090eb
Subject of commit:
Add support for NetBSD threads in i386-bsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fb/fb516a69133999df3e30fccb7c4f5759eb1090eb/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.reverse/insn-reverse.exp: move: si
FAIL -> UNRESOLVED: gdb.reverse/insn-reverse.exp: move: x/i $pc
==============================================
*** 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/fb/fb516a69133999df3e30fccb7c4f5759eb1090eb//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/fb/fb516a69133999df3e30fccb7c4f5759eb1090eb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-02 21:01 [binutils-gdb] Add support for NetBSD threads in amd64-bsd-nat.c gdb-buildbot
@ 2020-04-07 15:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-07 15:15 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/2372
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
1c0aa1fbb2fb1920c12400940704ee90491b7290
Subject of commit:
Add support for NetBSD threads in amd64-bsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1c/1c0aa1fbb2fb1920c12400940704ee90491b7290/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.reverse/insn-reverse.exp: move: si
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/1c/1c0aa1fbb2fb1920c12400940704ee90491b7290//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/1c/1c0aa1fbb2fb1920c12400940704ee90491b7290//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-02 16:17 [binutils-gdb] Rename the read symbol to xread gdb-buildbot
@ 2020-04-07 10:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-07 10:40 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/2370
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
5ccd2fb722d1900adf799dd808fa2146cac85d0d
Subject of commit:
Rename the read symbol to xread
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5c/5ccd2fb722d1900adf799dd808fa2146cac85d0d/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.reverse/insn-reverse.exp: move: x/i $pc
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/5c/5ccd2fb722d1900adf799dd808fa2146cac85d0d//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/5c/5ccd2fb722d1900adf799dd808fa2146cac85d0d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-02 14:31 [binutils-gdb] Add support for NetBSD threads in sparc-nat.c gdb-buildbot
@ 2020-04-07 8:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-07 8:22 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/2369
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
2108a63a5a736c2329a2a92ca58e0b9993dc5d42
Subject of commit:
Add support for NetBSD threads in sparc-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/21/2108a63a5a736c2329a2a92ca58e0b9993dc5d42/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.reverse/insn-reverse.exp: move: x/i $pc
==============================================
*** 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/21/2108a63a5a736c2329a2a92ca58e0b9993dc5d42//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/21/2108a63a5a736c2329a2a92ca58e0b9993dc5d42//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-02 11:48 [binutils-gdb] Replace a couple of assertions in the BFD library that can be triggered by attempts to parse corrupt input files gdb-buildbot
@ 2020-04-07 6:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-07 6:03 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/2368
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
327ef784ba105f067f5c1d587908259d7aabb971
Subject of commit:
Replace a couple of assertions in the BFD library that can be triggered by attempts to parse corrupt input files.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/32/327ef784ba105f067f5c1d587908259d7aabb971/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/32/327ef784ba105f067f5c1d587908259d7aabb971//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/32/327ef784ba105f067f5c1d587908259d7aabb971//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-02 7:41 [binutils-gdb] Remove a double free in the BFD library triggered when parsing a corrupt file gdb-buildbot
@ 2020-04-07 1:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-07 1:28 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/2366
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
ecbbbdba7182865e522e0893915e9be487fe14b0
Subject of commit:
Remove a double free in the BFD library triggered when parsing a corrupt file.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ec/ecbbbdba7182865e522e0893915e9be487fe14b0/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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 7: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
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
==============================================
*** 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/ec/ecbbbdba7182865e522e0893915e9be487fe14b0//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/ec/ecbbbdba7182865e522e0893915e9be487fe14b0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-02 3:22 [binutils-gdb] Inherit sh_nbsd_nat_target from nbsd_nat_target gdb-buildbot
@ 2020-04-06 20:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-06 20:53 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/2364
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
9809762324491b851332ce600ae9bde8dd34f601
Subject of commit:
Inherit sh_nbsd_nat_target from nbsd_nat_target
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/98/9809762324491b851332ce600ae9bde8dd34f601/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/98/9809762324491b851332ce600ae9bde8dd34f601//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/98/9809762324491b851332ce600ae9bde8dd34f601//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-02 1:33 [binutils-gdb] Include missing header to get missing declarations gdb-buildbot
@ 2020-04-06 18:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-06 18: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/2363
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
9e38d619101a7637c9aba3f722690bef127fa6a6
Subject of commit:
Include missing header to get missing declarations
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9e/9e38d619101a7637c9aba3f722690bef127fa6a6/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: 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-extended-gdbserver-m64/9e/9e38d619101a7637c9aba3f722690bef127fa6a6//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/9e/9e38d619101a7637c9aba3f722690bef127fa6a6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-01 21:17 [binutils-gdb] [gdb] Skip imports of c++ CUs gdb-buildbot
@ 2020-04-06 13:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-06 13:56 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/2361
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
589902954da0d1dd140b33e578954746c9bfc374
Subject of commit:
[gdb] Skip imports of c++ CUs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/58/589902954da0d1dd140b33e578954746c9bfc374/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/58/589902954da0d1dd140b33e578954746c9bfc374//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/58/589902954da0d1dd140b33e578954746c9bfc374//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-01 15:10 [binutils-gdb] arc: Migrate to new target features gdb-buildbot
@ 2020-04-06 7:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-06 7:03 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/2358
Author:
Anton Kolesov <Anton.Kolesov@synopsys.com>
Commit tested:
817a7585764366397879cbbedfd7e9c1454b656c
Subject of commit:
arc: Migrate to new target features
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/81/817a7585764366397879cbbedfd7e9c1454b656c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
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
==============================================
*** 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/81/817a7585764366397879cbbedfd7e9c1454b656c//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/81/817a7585764366397879cbbedfd7e9c1454b656c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-01 13:00 [binutils-gdb] Fix dwarf2_name caching bug gdb-buildbot
@ 2020-04-06 4:45 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-06 4:45 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/2357
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
67430cd00afcc270a27e44b10f9ef4249d554e66
Subject of commit:
Fix dwarf2_name caching bug
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/67/67430cd00afcc270a27e44b10f9ef4249d554e66/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/67/67430cd00afcc270a27e44b10f9ef4249d554e66//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/67/67430cd00afcc270a27e44b10f9ef4249d554e66//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-01 9:01 [binutils-gdb] gdb: select "Cygwin" OS ABI for Cygwin binaries gdb-buildbot
@ 2020-04-06 0:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-06 0:09 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/2355
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
8db52437243e251c01e352cdb325bc9ace578e7c
Subject of commit:
gdb: select "Cygwin" OS ABI for Cygwin binaries
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8d/8db52437243e251c01e352cdb325bc9ace578e7c/
*** 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-extended-gdbserver-m64/8d/8db52437243e251c01e352cdb325bc9ace578e7c//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/8d/8db52437243e251c01e352cdb325bc9ace578e7c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-01 6:45 [binutils-gdb] gdb: rename content of i386-windows-tdep.c, cygwin to windows gdb-buildbot
@ 2020-04-05 21:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-05 21:50 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/2354
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
5982a56ab9d161923e75712fcb358824748ea4ba
Subject of commit:
gdb: rename content of i386-windows-tdep.c, cygwin to windows
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/59/5982a56ab9d161923e75712fcb358824748ea4ba/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/59/5982a56ab9d161923e75712fcb358824748ea4ba//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/59/5982a56ab9d161923e75712fcb358824748ea4ba//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-01 4:52 [binutils-gdb] gdb: rename i386-cygwin-tdep.c to i386-windows-tdep.c gdb-buildbot
@ 2020-04-05 19:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-05 19:32 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/2353
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
7a1998dffb58ee1fab5edbd13458373654a1da42
Subject of commit:
gdb: rename i386-cygwin-tdep.c to i386-windows-tdep.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7a/7a1998dffb58ee1fab5edbd13458373654a1da42/
*** 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/7a/7a1998dffb58ee1fab5edbd13458373654a1da42//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/7a/7a1998dffb58ee1fab5edbd13458373654a1da42//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-04-01 2:03 [binutils-gdb] gdb: add Windows OS ABI gdb-buildbot
@ 2020-04-05 17:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-05 17:14 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/2352
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
053205cc4021026a5a1db05869d04bf7ad9ea1bd
Subject of commit:
gdb: add Windows OS ABI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/05/053205cc4021026a5a1db05869d04bf7ad9ea1bd/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/05/053205cc4021026a5a1db05869d04bf7ad9ea1bd//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/05/053205cc4021026a5a1db05869d04bf7ad9ea1bd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-31 21:47 [binutils-gdb] gdb: recognize 64 bits Windows executables as Cygwin osabi gdb-buildbot
@ 2020-04-05 12:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-05 12:39 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/2350
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
cb9b645d3e6b6164317104ed1a2a41c06da37bf4
Subject of commit:
gdb: recognize 64 bits Windows executables as Cygwin osabi
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/cb/cb9b645d3e6b6164317104ed1a2a41c06da37bf4/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
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/cb/cb9b645d3e6b6164317104ed1a2a41c06da37bf4//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/cb/cb9b645d3e6b6164317104ed1a2a41c06da37bf4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-31 18:35 [binutils-gdb] [gdb/testsuite] Add cache_verify option for gdb_caching_procs gdb-buildbot
@ 2020-04-05 10:21 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-05 10:21 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/2349
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
2f89101fe8b6a2423116a1ad1891f56bf6fc9510
Subject of commit:
[gdb/testsuite] Add cache_verify option for gdb_caching_procs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2f/2f89101fe8b6a2423116a1ad1891f56bf6fc9510/
*** 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 -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new FAIL: gdb.trace/trace-break.exp: 1 ftrace off: can't run to main
new FAIL: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/2f/2f89101fe8b6a2423116a1ad1891f56bf6fc9510//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/2f/2f89101fe8b6a2423116a1ad1891f56bf6fc9510//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-31 13:25 [binutils-gdb] [gdb/testsuite] Fix solib-list.exp test-case for exec with debug-info gdb-buildbot
@ 2020-04-05 3:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-05 3:28 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/2346
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
6b9374f1e07cb250736815ff8db263199416adc6
Subject of commit:
[gdb/testsuite] Fix solib-list.exp test-case for exec with debug-info
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6b/6b9374f1e07cb250736815ff8db263199416adc6/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
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/6b/6b9374f1e07cb250736815ff8db263199416adc6//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/6b/6b9374f1e07cb250736815ff8db263199416adc6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-31 10:34 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL with gdb.base/maint.exp gdb-buildbot
@ 2020-04-05 1:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-05 1:11 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/2345
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
eaeaf44cfdc9a4096a0dd52fa0606f29d4bfd48e
Subject of commit:
[gdb/testsuite] Fix check-read1 FAIL with gdb.base/maint.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ea/eaeaf44cfdc9a4096a0dd52fa0606f29d4bfd48e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: continue
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: switch to parent
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: can't run to main
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new UNRESOLVED: gdb.trace/trace-break.exp: 2 trace ftrace on: can't run to main
PASS -> UNRESOLVED: gdb.tui/basic.exp: set tui border-kind ascii
==============================================
*** 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/ea/eaeaf44cfdc9a4096a0dd52fa0606f29d4bfd48e//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/ea/eaeaf44cfdc9a4096a0dd52fa0606f29d4bfd48e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-31 1:34 [binutils-gdb] Add C parser support for "restrict" and "_Atomic" gdb-buildbot
@ 2020-04-04 12:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-04 12:36 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/2343
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
3293bbaffac9a22fc6d1a08ac6602a4a63b5e68b
Subject of commit:
Add C parser support for "restrict" and "_Atomic"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/32/3293bbaffac9a22fc6d1a08ac6602a4a63b5e68b/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/32/3293bbaffac9a22fc6d1a08ac6602a4a63b5e68b//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/32/3293bbaffac9a22fc6d1a08ac6602a4a63b5e68b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-30 21:33 [binutils-gdb] Add support for NetBSD threads in m68k-bsd-nat.c gdb-buildbot
@ 2020-04-04 8:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-04 8:00 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/2341
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
154151a6e303fa4b17e3597e3434a1c5999df8e1
Subject of commit:
Add support for NetBSD threads in m68k-bsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/15/154151a6e303fa4b17e3597e3434a1c5999df8e1/
*** 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/15/154151a6e303fa4b17e3597e3434a1c5999df8e1//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/15/154151a6e303fa4b17e3597e3434a1c5999df8e1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-30 15:05 [binutils-gdb] Define _KERNTYPES in m68k-bsd-nat.c gdb-buildbot
@ 2020-04-04 1:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-04 1:07 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/2338
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
f90280caf5b34ebd564809a7f66685efc79bbf6d
Subject of commit:
Define _KERNTYPES in m68k-bsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f9/f90280caf5b34ebd564809a7f66685efc79bbf6d/
*** 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-extended-gdbserver-m64/f9/f90280caf5b34ebd564809a7f66685efc79bbf6d//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/f9/f90280caf5b34ebd564809a7f66685efc79bbf6d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-30 12:51 [binutils-gdb] Add support for NetBSD threads in alpha-bsd-nat.c gdb-buildbot
@ 2020-04-03 22:49 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-03 22:49 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/2337
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
6def66f1404e58b376655f6fb622aeb9dfc0f587
Subject of commit:
Add support for NetBSD threads in alpha-bsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6d/6def66f1404e58b376655f6fb622aeb9dfc0f587/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/6d/6def66f1404e58b376655f6fb622aeb9dfc0f587//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/6d/6def66f1404e58b376655f6fb622aeb9dfc0f587//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-30 9:08 [binutils-gdb] Inherit alpha_netbsd_nat_target from nbsd_nat_target gdb-buildbot
@ 2020-04-03 18:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-03 18:12 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/2335
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
4fed520be264b60893aa674071947890f8172915
Subject of commit:
Inherit alpha_netbsd_nat_target from nbsd_nat_target
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4f/4fed520be264b60893aa674071947890f8172915/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/4f/4fed520be264b60893aa674071947890f8172915//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/4f/4fed520be264b60893aa674071947890f8172915//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-30 6:46 [binutils-gdb] Define _KERNTYPES in alpha-bsd-nat.c gdb-buildbot
@ 2020-04-03 15:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-03 15:54 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/2334
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
2190cf067b87e804c59c0a0c14c8ae48deabfbf4
Subject of commit:
Define _KERNTYPES in alpha-bsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/21/2190cf067b87e804c59c0a0c14c8ae48deabfbf4/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/21/2190cf067b87e804c59c0a0c14c8ae48deabfbf4//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/21/2190cf067b87e804c59c0a0c14c8ae48deabfbf4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-30 4:57 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL in attach-many-short-lived-threads.exp gdb-buildbot
@ 2020-04-03 13:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-03 13:36 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/2333
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
54c4382534f0c894434deca5eb89cd02661d6feb
Subject of commit:
[gdb/testsuite] Fix check-read1 FAIL in attach-many-short-lived-threads.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/54/54c4382534f0c894434deca5eb89cd02661d6feb/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/54/54c4382534f0c894434deca5eb89cd02661d6feb//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/54/54c4382534f0c894434deca5eb89cd02661d6feb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-30 3:21 [binutils-gdb] Add support for NetBSD threads in arm-nbsd-nat.c gdb-buildbot
@ 2020-04-03 11:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-03 11:19 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/2332
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
75c56d3d1298de72aa67555f2c723a80b4818e04
Subject of commit:
Add support for NetBSD threads in arm-nbsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/75/75c56d3d1298de72aa67555f2c723a80b4818e04/
*** 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/75/75c56d3d1298de72aa67555f2c723a80b4818e04//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/75/75c56d3d1298de72aa67555f2c723a80b4818e04//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-30 1:01 [binutils-gdb] Inherit arm_netbsd_nat_target from nbsd_nat_target gdb-buildbot
@ 2020-04-03 9:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-03 9: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/2331
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
6018d381a00515933016c539d2fdc18ad0d304b8
Subject of commit:
Inherit arm_netbsd_nat_target from nbsd_nat_target
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/60/6018d381a00515933016c539d2fdc18ad0d304b8/
*** Diff to previous build ***
==============================================
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
==============================================
*** 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/60/6018d381a00515933016c539d2fdc18ad0d304b8//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/60/6018d381a00515933016c539d2fdc18ad0d304b8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-29 23:15 [binutils-gdb] Add support for NetBSD threads in x86-bsd-nat.c gdb-buildbot
@ 2020-04-03 6:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-03 6:43 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/2330
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
013f99f035c49b000ca058db80ad15e00aa330dc
Subject of commit:
Add support for NetBSD threads in x86-bsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/01/013f99f035c49b000ca058db80ad15e00aa330dc/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
==============================================
*** 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/01/013f99f035c49b000ca058db80ad15e00aa330dc//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/01/013f99f035c49b000ca058db80ad15e00aa330dc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-29 21:03 [binutils-gdb] Add support for threads in vax_bsd_nat_target gdb-buildbot
@ 2020-04-03 4:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-03 4:25 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/2329
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
6227b330d563add042066259e5f933c89a85b3b5
Subject of commit:
Add support for threads in vax_bsd_nat_target
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/62/6227b330d563add042066259e5f933c89a85b3b5/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.reverse/insn-reverse.exp: move: si
==============================================
*** 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/62/6227b330d563add042066259e5f933c89a85b3b5//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/62/6227b330d563add042066259e5f933c89a85b3b5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-29 19:17 [binutils-gdb] Add explicit cast to fix build of vax-bsd-nat.c gdb-buildbot
@ 2020-04-03 0:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-03 0:18 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/2328
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
12753073036aad1250b5e9a1bd6991c125150269
Subject of commit:
Add explicit cast to fix build of vax-bsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/12/12753073036aad1250b5e9a1bd6991c125150269/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.reverse/insn-reverse.exp: move: si
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/12/12753073036aad1250b5e9a1bd6991c125150269//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/12/12753073036aad1250b5e9a1bd6991c125150269//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-29 11:26 [binutils-gdb] Define _KERNTYPES in ppc-nbsd-nat.c gdb-buildbot
@ 2020-04-02 16:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-02 16:55 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/2324
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
52feded7781821d227db0be188e564698d29fe9e
Subject of commit:
Define _KERNTYPES in ppc-nbsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/52/52feded7781821d227db0be188e564698d29fe9e/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/52/52feded7781821d227db0be188e564698d29fe9e//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/52/52feded7781821d227db0be188e564698d29fe9e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-29 9:53 [binutils-gdb] Define _KERNTYPES in vax-bsd-nat.c gdb-buildbot
@ 2020-04-02 14:33 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-02 14:33 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/2323
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
25567eeece4efdea99a9a2b3a6daf81ec31b4b07
Subject of commit:
Define _KERNTYPES in vax-bsd-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/25/25567eeece4efdea99a9a2b3a6daf81ec31b4b07/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.server/ext-run.exp: load new file without any gdbserver inferior
PASS -> FAIL: gdb.server/ext-run.exp: monitor 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-extended-gdbserver-m64/25/25567eeece4efdea99a9a2b3a6daf81ec31b4b07//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/25/25567eeece4efdea99a9a2b3a6daf81ec31b4b07//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-29 7:45 [binutils-gdb] Include netbsd-core.lo for all arm/mips NetBSD targets gdb-buildbot
@ 2020-04-02 12:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-02 12:00 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/2322
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
8b5d0a4f6ff67aa81275c705508e3f49accc8120
Subject of commit:
Include netbsd-core.lo for all arm/mips NetBSD targets
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8b/8b5d0a4f6ff67aa81275c705508e3f49accc8120/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================
*** 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/8b/8b5d0a4f6ff67aa81275c705508e3f49accc8120//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/8b/8b5d0a4f6ff67aa81275c705508e3f49accc8120//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-29 5:57 [binutils-gdb] [gdb/testsuite] Fix unrecognized debug output level 'statement-frontiers' message gdb-buildbot
@ 2020-04-02 9:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-02 9:43 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/2321
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
2ac70237d2458fb2eb5e73de6bb02a396b5bada0
Subject of commit:
[gdb/testsuite] Fix unrecognized debug output level 'statement-frontiers' message
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2a/2ac70237d2458fb2eb5e73de6bb02a396b5bada0/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2a/2ac70237d2458fb2eb5e73de6bb02a396b5bada0//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/2ac70237d2458fb2eb5e73de6bb02a396b5bada0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-29 2:27 [binutils-gdb] BFD_FAKE_SECTIONS formatting gdb-buildbot
@ 2020-04-02 5:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-02 5:07 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/2319
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
48e81d7f6314345a5d8648ab7b7b0ac0c6a8a381
Subject of commit:
BFD_FAKE_SECTIONS formatting
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/48/48e81d7f6314345a5d8648ab7b7b0ac0c6a8a381/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/48/48e81d7f6314345a5d8648ab7b7b0ac0c6a8a381//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/48/48e81d7f6314345a5d8648ab7b7b0ac0c6a8a381//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-29 0:35 [binutils-gdb] Remove val_print gdb-buildbot
@ 2020-04-02 2:49 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-02 2:49 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/2318
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
426a9c18dddcdd5f640b702734dd8f9c108b7372
Subject of commit:
Remove val_print
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/42/426a9c18dddcdd5f640b702734dd8f9c108b7372/
*** Diff to previous build ***
==============================================
KFAIL -> KPASS: gdb.opt/inline-locals.exp: info locals above bar 2
KFAIL -> KPASS: gdb.opt/inline-locals.exp: info locals above bar 3
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable arguments: ctf: info args
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable arguments: info args
PASS -> FAIL: gdb.trace/unavailable.exp: unavailable arguments: tfile: info args
==============================================
*** 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/42/426a9c18dddcdd5f640b702734dd8f9c108b7372//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/42/426a9c18dddcdd5f640b702734dd8f9c108b7372//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-28 18:59 [binutils-gdb] Change print_field_values to use value-based API gdb-buildbot
@ 2020-04-01 22:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-01 22:14 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/2316
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
3a916a975745f386cabbaba64531ed9b5f8be509
Subject of commit:
Change print_field_values to use value-based API
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3a/3a916a975745f386cabbaba64531ed9b5f8be509/
*** 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/3a/3a916a975745f386cabbaba64531ed9b5f8be509//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/3a/3a916a975745f386cabbaba64531ed9b5f8be509//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-28 16:05 [binutils-gdb] Introduce ada_value_print_array gdb-buildbot
@ 2020-04-01 19:51 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-01 19:51 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/2315
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
b59eac373217394503946dc360692d81809e08af
Subject of commit:
Introduce ada_value_print_array
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b5/b59eac373217394503946dc360692d81809e08af/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/b5/b59eac373217394503946dc360692d81809e08af//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/b5/b59eac373217394503946dc360692d81809e08af//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-28 11:56 [binutils-gdb] Convert ada_val_print_ref to value-based API gdb-buildbot
@ 2020-04-01 15:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-01 15:14 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/2313
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
2e088f8b6ea61fa9db1b592cbd4a6aa80b4e0ab5
Subject of commit:
Convert ada_val_print_ref to value-based API
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2e/2e088f8b6ea61fa9db1b592cbd4a6aa80b4e0ab5/
*** Diff to previous build ***
==============================================
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/2e/2e088f8b6ea61fa9db1b592cbd4a6aa80b4e0ab5//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/2e/2e088f8b6ea61fa9db1b592cbd4a6aa80b4e0ab5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-28 10:09 [binutils-gdb] Introduce ada_value_print_num gdb-buildbot
@ 2020-04-01 12:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-01 12:56 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/2312
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
39ef85a896e7efa0391a7ed14cc965fe1d46cbb9
Subject of commit:
Introduce ada_value_print_num
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/39/39ef85a896e7efa0391a7ed14cc965fe1d46cbb9/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new UNRESOLVED: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/39/39ef85a896e7efa0391a7ed14cc965fe1d46cbb9//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/39/39ef85a896e7efa0391a7ed14cc965fe1d46cbb9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-28 8:03 [binutils-gdb] Rewrite ada_value_print_1 floating point case gdb-buildbot
@ 2020-04-01 10:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-01 10:38 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/2311
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
b9fa6e07980f901f2a3f99b7eed4356d3209a3c4
Subject of commit:
Rewrite ada_value_print_1 floating point case
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b9/b9fa6e07980f901f2a3f99b7eed4356d3209a3c4/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
==============================================
*** 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/b9/b9fa6e07980f901f2a3f99b7eed4356d3209a3c4//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/b9/b9fa6e07980f901f2a3f99b7eed4356d3209a3c4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-28 5:52 [binutils-gdb] Introduce ada_value_print_ptr gdb-buildbot
@ 2020-04-01 8:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-01 8:20 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/2310
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
416595d6409b1bd2e2f9862c133ca764688da77f
Subject of commit:
Introduce ada_value_print_ptr
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/41/416595d6409b1bd2e2f9862c133ca764688da77f/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: detach child
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: switch to parent
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new UNRESOLVED: gdb.trace/trace-break.exp: 3 trace on: can't run to main
new UNRESOLVED: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
new FAIL: gdb.trace/trace-mt.exp: can't run to main for ftrace tests
==============================================
*** 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/41/416595d6409b1bd2e2f9862c133ca764688da77f//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/41/416595d6409b1bd2e2f9862c133ca764688da77f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-28 2:53 [binutils-gdb] Rewrite ada_value_print_inner gdb-buildbot
@ 2020-04-01 6:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-01 6:03 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/2309
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
5b5e15ecddafc43de2da632aa68f935a879d9a91
Subject of commit:
Rewrite ada_value_print_inner
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5b/5b5e15ecddafc43de2da632aa68f935a879d9a91/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/5b/5b5e15ecddafc43de2da632aa68f935a879d9a91//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/5b/5b5e15ecddafc43de2da632aa68f935a879d9a91//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-27 23:31 [binutils-gdb] Introduce cp_print_value gdb-buildbot
@ 2020-04-01 3:45 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-01 3:45 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/2308
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
fbf54e7554e0dcd60e18b1821c5c127fb3eb48ff
Subject of commit:
Introduce cp_print_value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fb/fbf54e7554e0dcd60e18b1821c5c127fb3eb48ff/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.python/py-prettyprint.exp: c++: print derived
==============================================
*** 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/fb/fbf54e7554e0dcd60e18b1821c5c127fb3eb48ff//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/fb/fbf54e7554e0dcd60e18b1821c5c127fb3eb48ff//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-27 21:17 [binutils-gdb] Introduce cp_print_value_fields and c_value_print_struct gdb-buildbot
@ 2020-04-01 1:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-04-01 1:27 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/2307
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
64b653ca7058bfd4f91879dea628809d398b488e
Subject of commit:
Introduce cp_print_value_fields and c_value_print_struct
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/64/64b653ca7058bfd4f91879dea628809d398b488e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/64/64b653ca7058bfd4f91879dea628809d398b488e//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/64/64b653ca7058bfd4f91879dea628809d398b488e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-27 19:29 [binutils-gdb] Introduce c_value_print_array gdb-buildbot
@ 2020-03-31 21:21 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-31 21:21 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/2306
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
6999f067c1b30c1a2c3e41a0f68f74e459652560
Subject of commit:
Introduce c_value_print_array
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/69/6999f067c1b30c1a2c3e41a0f68f74e459652560/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: <unavailable> is not the same as 0 in array element repetitions
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: ctf: <unavailable> is not the same as 0 in array element repetitions
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print *tarray@3
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: print *tarray@3
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: tfile: <unavailable> is not the same as 0 in array element repetitions
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print *tarray@3
==============================================
*** 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/69/6999f067c1b30c1a2c3e41a0f68f74e459652560//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/69/6999f067c1b30c1a2c3e41a0f68f74e459652560//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-27 17:35 [binutils-gdb] Introduce c_value_print_memberptr gdb-buildbot
@ 2020-03-31 18:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-31 18:34 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/2304
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
ce80b8bd374e14c1cebe149724274b1894f5f8cf
Subject of commit:
Introduce c_value_print_memberptr
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/ce80b8bd374e14c1cebe149724274b1894f5f8cf/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/ce80b8bd374e14c1cebe149724274b1894f5f8cf//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/ce/ce80b8bd374e14c1cebe149724274b1894f5f8cf//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-27 15:14 [binutils-gdb] Introduce c_value_print_int gdb-buildbot
@ 2020-03-31 16:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-31 16:16 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/2303
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
2faac269d59e57a49cd9f9209e1d39e03e2744bc
Subject of commit:
Introduce c_value_print_int
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2f/2faac269d59e57a49cd9f9209e1d39e03e2744bc/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/2f/2faac269d59e57a49cd9f9209e1d39e03e2744bc//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/2f/2faac269d59e57a49cd9f9209e1d39e03e2744bc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-27 13:09 [binutils-gdb] Introduce c_value_print_ptr gdb-buildbot
@ 2020-03-31 13:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-31 13:58 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/2302
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
da3e2c2923b5c16c47c962bc53ea96678ca6a0e5
Subject of commit:
Introduce c_value_print_ptr
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/da/da3e2c2923b5c16c47c962bc53ea96678ca6a0e5/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new FAIL: gdb.trace/ftrace.exp: can't run to main for ftrace tests
==============================================
*** 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/da/da3e2c2923b5c16c47c962bc53ea96678ca6a0e5//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/da/da3e2c2923b5c16c47c962bc53ea96678ca6a0e5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-27 11:02 [binutils-gdb] Rewrite c_value_print_inner gdb-buildbot
@ 2020-03-31 11:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-31 11:44 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/2301
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
5083623134c2ac383a8d8412b6d3c530452fda51
Subject of commit:
Rewrite c_value_print_inner
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/50/5083623134c2ac383a8d8412b6d3c530452fda51/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
PASS -> FAIL: gdb.cp/virtbase.exp: print *
PASS -> FAIL: gdb.cp/virtbase.exp: print *this
==============================================
*** 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/50/5083623134c2ac383a8d8412b6d3c530452fda51//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/50/5083623134c2ac383a8d8412b6d3c530452fda51//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-27 6:54 [binutils-gdb] Simplify generic_val_print_float gdb-buildbot
@ 2020-03-31 7:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-31 7:09 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/2299
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
f5354008862defe83fc6d3620d51da52f860f5bf
Subject of commit:
Simplify generic_val_print_float
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f5/f5354008862defe83fc6d3620d51da52f860f5bf/
*** 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/f5/f5354008862defe83fc6d3620d51da52f860f5bf//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/f5/f5354008862defe83fc6d3620d51da52f860f5bf//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-27 2:43 [binutils-gdb] Introduce generic_value_print_int gdb-buildbot
@ 2020-03-31 2:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-31 2:34 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/2297
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
fdddfccba1cc4f70089873441b7e6c38de09ae37
Subject of commit:
Introduce generic_value_print_int
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fd/fdddfccba1cc4f70089873441b7e6c38de09ae37/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/fd/fdddfccba1cc4f70089873441b7e6c38de09ae37//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/fd/fdddfccba1cc4f70089873441b7e6c38de09ae37//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-26 20:56 [binutils-gdb] Remove generic_val_print_flags gdb-buildbot
@ 2020-03-30 19:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-30 19:41 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/2294
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
65786af6265044c67b25db23267f942c73b6fc20
Subject of commit:
Remove generic_val_print_flags
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/65/65786af6265044c67b25db23267f942c73b6fc20/
*** 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/65/65786af6265044c67b25db23267f942c73b6fc20//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/65/65786af6265044c67b25db23267f942c73b6fc20//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-26 18:28 [binutils-gdb] Fix generic_val_print_enum for value-based printing gdb-buildbot
@ 2020-03-30 17:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-30 17:24 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/2293
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
40f3ce189e3c16398f2e56442e6d8db5573587ee
Subject of commit:
Fix generic_val_print_enum for value-based printing
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/40/40f3ce189e3c16398f2e56442e6d8db5573587ee/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/40/40f3ce189e3c16398f2e56442e6d8db5573587ee//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/40/40f3ce189e3c16398f2e56442e6d8db5573587ee//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-26 16:47 [binutils-gdb] Introduce generic_value_print_ptr gdb-buildbot
@ 2020-03-30 15:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-30 15:06 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/2292
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
2a5b130bcb6f376b6a28d8378172ed3f9b92e9d9
Subject of commit:
Introduce generic_value_print_ptr
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2a/2a5b130bcb6f376b6a28d8378172ed3f9b92e9d9/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
==============================================
*** 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/2a5b130bcb6f376b6a28d8378172ed3f9b92e9d9//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/2a5b130bcb6f376b6a28d8378172ed3f9b92e9d9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-26 14:07 [binutils-gdb] Initial rewrite of generic_value_print gdb-buildbot
@ 2020-03-30 12:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-30 12:47 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/2291
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
abc66ce95eee79db058123b985e19dcfc03dc1a7
Subject of commit:
Initial rewrite of generic_value_print
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ab/abc66ce95eee79db058123b985e19dcfc03dc1a7/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: step
PASS -> UNRESOLVED: gdb.threads/multiple-step-overs.exp: displaced=on: step: thread 1
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> UNRESOLVED: gdb.threads/thread-execl.exp: non-stop: set non-stop 1
new UNRESOLVED: gdb.threads/thread-execl.exp: schedlock on: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_count
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: do_nothing_thread_func
==============================================
*** 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/ab/abc66ce95eee79db058123b985e19dcfc03dc1a7//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/ab/abc66ce95eee79db058123b985e19dcfc03dc1a7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-26 10:29 [binutils-gdb] Rewrite pascal_value_print_inner gdb-buildbot
@ 2020-03-30 8:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-30 8:10 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/2289
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
64d64d3a76bb57305b278082ed1a29f0982b664d
Subject of commit:
Rewrite pascal_value_print_inner
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/64/64d64d3a76bb57305b278082ed1a29f0982b664d/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/64/64d64d3a76bb57305b278082ed1a29f0982b664d//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/64/64d64d3a76bb57305b278082ed1a29f0982b664d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-26 6:14 [binutils-gdb] Convert Modula-2 printing to value-based API gdb-buildbot
@ 2020-03-30 3:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-30 3: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/2287
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
59fcdac646cf4ed3168cd787a883d282b4d9de1f
Subject of commit:
Convert Modula-2 printing to value-based API
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/59/59fcdac646cf4ed3168cd787a883d282b4d9de1f/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/59/59fcdac646cf4ed3168cd787a883d282b4d9de1f//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/59/59fcdac646cf4ed3168cd787a883d282b4d9de1f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-26 4:40 [binutils-gdb] Convert D printing to value-based API gdb-buildbot
@ 2020-03-30 1:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-30 1:17 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/2286
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
d133c3e1a877259bbee460897d9a6a2820ffe451
Subject of commit:
Convert D printing to value-based API
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d1/d133c3e1a877259bbee460897d9a6a2820ffe451/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/d1/d133c3e1a877259bbee460897d9a6a2820ffe451//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/d1/d133c3e1a877259bbee460897d9a6a2820ffe451//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-26 2:22 [binutils-gdb] Convert Go printing to value-based API gdb-buildbot
@ 2020-03-29 23:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-29 23:00 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/2285
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
23b0f06be43054a9b182e7ea60a763c35302924a
Subject of commit:
Convert Go printing to value-based API
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/23/23b0f06be43054a9b182e7ea60a763c35302924a/
*** 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/23/23b0f06be43054a9b182e7ea60a763c35302924a//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/23/23b0f06be43054a9b182e7ea60a763c35302924a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-26 0:35 [binutils-gdb] Convert Rust printing to value-based API gdb-buildbot
@ 2020-03-29 20:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-29 20:42 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/2284
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
5f56f7cbd22219e84df3caece06f469c5063e5fb
Subject of commit:
Convert Rust printing to value-based API
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5f/5f56f7cbd22219e84df3caece06f469c5063e5fb/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/5f/5f56f7cbd22219e84df3caece06f469c5063e5fb//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/5f/5f56f7cbd22219e84df3caece06f469c5063e5fb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-25 21:06 [binutils-gdb] Introduce ada_value_print_inner gdb-buildbot
@ 2020-03-29 18:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-29 18:25 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/2283
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
26792ee0345c09bd1c76f3ee0e16ed15ab7215b9
Subject of commit:
Introduce ada_value_print_inner
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/26/26792ee0345c09bd1c76f3ee0e16ed15ab7215b9/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================
*** 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/26/26792ee0345c09bd1c76f3ee0e16ed15ab7215b9//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/26/26792ee0345c09bd1c76f3ee0e16ed15ab7215b9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-25 18:31 [binutils-gdb] Introduce f_value_print_innner gdb-buildbot
@ 2020-03-29 14:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-29 14:18 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/2282
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
24051bbe843abcdcc108542da195e009c3f19910
Subject of commit:
Introduce f_value_print_innner
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/24/24051bbe843abcdcc108542da195e009c3f19910/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/killed.exp: GDB exits after multi-threaded program exits messily
PASS -> FAIL: gdb.threads/killed.exp: run program to completion
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/24/24051bbe843abcdcc108542da195e009c3f19910//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/24/24051bbe843abcdcc108542da195e009c3f19910//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-25 16:43 [binutils-gdb] Introduce pascal_value_print_inner gdb-buildbot
@ 2020-03-29 11:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-29 11:32 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/2280
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c0941be613054fe525891a2898e7d938b8e8ceed
Subject of commit:
Introduce pascal_value_print_inner
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c0/c0941be613054fe525891a2898e7d938b8e8ceed/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c0/c0941be613054fe525891a2898e7d938b8e8ceed//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/c0/c0941be613054fe525891a2898e7d938b8e8ceed//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-25 14:14 [binutils-gdb] Introduce m2_value_print_inner gdb-buildbot
@ 2020-03-29 9:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-29 9:14 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/2279
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
62c4663d3c59b53e622b2f83eeae7c8d47c656dd
Subject of commit:
Introduce m2_value_print_inner
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/62/62c4663d3c59b53e622b2f83eeae7c8d47c656dd/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/62/62c4663d3c59b53e622b2f83eeae7c8d47c656dd//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/62/62c4663d3c59b53e622b2f83eeae7c8d47c656dd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-25 12:26 [binutils-gdb] Introduce c_value_print_inner gdb-buildbot
@ 2020-03-29 6:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-29 6:57 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/2278
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
621821900289e9ef3472dc430d6fcf4d55b301e2
Subject of commit:
Introduce c_value_print_inner
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/62/621821900289e9ef3472dc430d6fcf4d55b301e2/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/62/621821900289e9ef3472dc430d6fcf4d55b301e2//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/62/621821900289e9ef3472dc430d6fcf4d55b301e2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-25 8:18 [binutils-gdb] Simplify c_val_print_array gdb-buildbot
@ 2020-03-29 2:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-29 2:22 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/2276
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
7fe471e9ae8dbc61b898f7572fed31c4224a0b89
Subject of commit:
Simplify c_val_print_array
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7f/7fe471e9ae8dbc61b898f7572fed31c4224a0b89/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/7f/7fe471e9ae8dbc61b898f7572fed31c4224a0b89//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/7f/7fe471e9ae8dbc61b898f7572fed31c4224a0b89//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-25 2:33 [binutils-gdb] Introduce value_print_scalar_formatted gdb-buildbot
@ 2020-03-28 17:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-28 17:40 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/2273
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
4f9ae810130bc4202ec1c5eae934900c542a9016
Subject of commit:
Introduce value_print_scalar_formatted
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4f/4f9ae810130bc4202ec1c5eae934900c542a9016/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/4f/4f9ae810130bc4202ec1c5eae934900c542a9016//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/4f/4f9ae810130bc4202ec1c5eae934900c542a9016//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-25 0:45 [binutils-gdb] Introduce generic_value_print gdb-buildbot
@ 2020-03-28 14:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-28 14:53 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/2271
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
156bfec999186e3eccaf51fa3b81280bf51dbaa4
Subject of commit:
Introduce generic_value_print
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/15/156bfec999186e3eccaf51fa3b81280bf51dbaa4/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: detach child
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: switch to parent
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new UNRESOLVED: gdb.trace/actions-changed.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/actions-changed.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.trace/trace-break.exp: 3 trace off: can't run to main
new UNRESOLVED: gdb.trace/trace-mt.exp: ftrace off: can't run to main
new UNRESOLVED: gdb.trace/trace-mt.exp: ftrace off: delete all breakpoints in delete_breakpoints
==============================================
*** 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/15/156bfec999186e3eccaf51fa3b81280bf51dbaa4//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/15/156bfec999186e3eccaf51fa3b81280bf51dbaa4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-24 22:28 [binutils-gdb] Introduce la_value_print_inner gdb-buildbot
@ 2020-03-28 12:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-28 12:34 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/2270
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
2b4e573d62be3a59057895054b1b5faa67557ce6
Subject of commit:
Introduce la_value_print_inner
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2b/2b4e573d62be3a59057895054b1b5faa67557ce6/
*** 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/2b/2b4e573d62be3a59057895054b1b5faa67557ce6//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/2b/2b4e573d62be3a59057895054b1b5faa67557ce6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-24 20:04 [binutils-gdb] Use common_val_print in c-valprint.c gdb-buildbot
@ 2020-03-28 10:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-28 10:16 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/2269
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
a1f6a07c3d1d3a34d36d4e49f0fd3c66554e41b2
Subject of commit:
Use common_val_print in c-valprint.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a1/a1f6a07c3d1d3a34d36d4e49f0fd3c66554e41b2/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/printcmds.exp: print teststring2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a1/a1f6a07c3d1d3a34d36d4e49f0fd3c66554e41b2//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/a1/a1f6a07c3d1d3a34d36d4e49f0fd3c66554e41b2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-24 14:16 [binutils-gdb] Use common_val_print in f-valprint.c gdb-buildbot
@ 2020-03-28 5:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-28 5:41 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/2267
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
72a45c938438f33bf8e7de6a5f068ba31c8c1e36
Subject of commit:
Use common_val_print in f-valprint.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/72/72a45c938438f33bf8e7de6a5f068ba31c8c1e36/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================
*** 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/72/72a45c938438f33bf8e7de6a5f068ba31c8c1e36//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/72/72a45c938438f33bf8e7de6a5f068ba31c8c1e36//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-24 12:24 [binutils-gdb] Use common_val_print in riscv-tdep.c gdb-buildbot
@ 2020-03-28 1:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-28 1: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/2266
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
040f66bd2d6aea4d35a2e5cb88b499799ee4c466
Subject of commit:
Use common_val_print in riscv-tdep.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/04/040f66bd2d6aea4d35a2e5cb88b499799ee4c466/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/04/040f66bd2d6aea4d35a2e5cb88b499799ee4c466//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/04/040f66bd2d6aea4d35a2e5cb88b499799ee4c466//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-24 8:13 [binutils-gdb] Use common_val_print in infcmd.c gdb-buildbot
@ 2020-03-27 20:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-27 20:31 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/2263
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
3444c526a33e61aeff86cbe1184e765458007890
Subject of commit:
Use common_val_print in infcmd.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/34/3444c526a33e61aeff86cbe1184e765458007890/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/34/3444c526a33e61aeff86cbe1184e765458007890//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/34/3444c526a33e61aeff86cbe1184e765458007890//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-24 6:13 [binutils-gdb] Introduce common_val_print_checked gdb-buildbot
@ 2020-03-27 18:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-27 18:13 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/2262
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c2a44efee1cbe5321a850c53f34e9c205a1d6ca0
Subject of commit:
Introduce common_val_print_checked
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c2/c2a44efee1cbe5321a850c53f34e9c205a1d6ca0/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c2/c2a44efee1cbe5321a850c53f34e9c205a1d6ca0//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/c2/c2a44efee1cbe5321a850c53f34e9c205a1d6ca0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-24 4:26 [binutils-gdb] Refactor val_print and common_val_print gdb-buildbot
@ 2020-03-27 15:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-27 15:55 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/2261
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
b0c26e99f50d6926dd628ec51c1e9a037c521ab5
Subject of commit:
Refactor val_print and common_val_print
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b0/b0c26e99f50d6926dd628ec51c1e9a037c521ab5/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/b0/b0c26e99f50d6926dd628ec51c1e9a037c521ab5//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/b0/b0c26e99f50d6926dd628ec51c1e9a037c521ab5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-24 2:07 [binutils-gdb] Use scoped_value_mark in value_print gdb-buildbot
@ 2020-03-27 13:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-27 13:38 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/2260
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
ce3acbe9fa876647649cc88f94264a5c56bf46a1
Subject of commit:
Use scoped_value_mark in value_print
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/ce3acbe9fa876647649cc88f94264a5c56bf46a1/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
==============================================
*** 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/ce/ce3acbe9fa876647649cc88f94264a5c56bf46a1//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/ce/ce3acbe9fa876647649cc88f94264a5c56bf46a1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-24 0:20 [binutils-gdb] gdb/testsuite: Remove paths and make test names unique gdb-buildbot
@ 2020-03-27 11:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-27 11:20 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/2259
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
1b83d09cd503d7fde57c50db51d5780ee8df5fae
Subject of commit:
gdb/testsuite: Remove paths and make test names unique
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1b/1b83d09cd503d7fde57c50db51d5780ee8df5fae/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: first backtrace: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: first backtrace: dl bt
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: continue to breakpoint: _exit
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: get integer valueof "mypid"
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
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
==============================================
*** 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/1b/1b83d09cd503d7fde57c50db51d5780ee8df5fae//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/1b/1b83d09cd503d7fde57c50db51d5780ee8df5fae//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-23 22:34 [binutils-gdb] Implement NT_NETBSDCORE_LWPSTATUS (NetBSD-Core) gdb-buildbot
@ 2020-03-27 8:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-27 8:58 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/2258
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
06d949ec3121f4732e789db1efc53986355c9481
Subject of commit:
Implement NT_NETBSDCORE_LWPSTATUS (NetBSD-Core)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/06/06d949ec3121f4732e789db1efc53986355c9481/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/exec_changed.exp: start second
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new FAIL: gdb.base/foll-exec-mode.exp: same,continue,no_infswitch: use correct executable
new FAIL: gdb.base/foll-exec-mode.exp: same,next,no_infswitch: use correct executable
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new FAIL: gdb.base/gdbinit-history.exp: GDBHISTFILE is empty: show commands
new FAIL: gdb.base/gdbinit-history.exp: load GDBHISTFILE history file: show commands
new FAIL: gdb.base/gdbinit-history.exp: load default history file: show commands
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=off: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new FAIL: gdb.opt/inline-break.exp: cmd=break: bt stopped in inline_func1
new FAIL: gdb.opt/inline-break.exp: cmd=break: continue to breakpoint: inline_func1
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: could not run to main
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: delete all breakpoints in delete_breakpoints
new FAIL: gdb.opt/inline-cmds.exp: backtrace at inlined_fn from noinline
new FAIL: gdb.opt/inline-cmds.exp: inlined_fn from noinline inlined
new FAIL: gdb.opt/inline-cmds.exp: main not inlined
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new FAIL: gdb.opt/inline-cmds.exp: noinline from outer_inline1 not inlined
new FAIL: gdb.opt/inline-cmds.exp: outer_inline1 inlined
new FAIL: gdb.opt/inline-cmds.exp: outer_inline2 inlined
new FAIL: gdb.opt/inline-cmds.exp: up from outer_inline2
new FAIL: gdb.opt/inline-cmds.exp: up to noinline
new FAIL: gdb.opt/inline-cmds.exp: up to outer_inline1
new FAIL: gdb.opt/inline-cmds.exp: up to outer_inline2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-frame-inline.exp: info frame
new FAIL: gdb.python/py-frame-inline.exp: python print
new FAIL: gdb.python/py-frame-inline.exp: up
new FAIL: gdb.python/tui-window.exp: Window was updated
new FAIL: gdb.reverse/insn-reverse.exp: move: capture_command_output for info all-registers
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 0:mov x0, sp
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 10:adrp x0, 0xaaaaaaabb000
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 11:add x0, x0, #0x10
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 12:ldr w0, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 13:ldr w1, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 14:cmp w1, w0
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 15:b.lt 0xaaaaaaaaa8a8 <main+24> // b.tstop
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 16:adrp x0, 0xaaaaaaabb000
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 17:add x0, x0, #0x18
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 18:ldrsw x1, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 19:ldr x0, [x0, x1, lsl #3]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 1:ld1 {v1.8b}, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 20:blr x0
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 21:sub sp, sp, #0x30
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 22:mov w0, #0x42f60000 // #1123418112
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 23:fmov s0, w0
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 24:str s0, [sp, #4]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 2:ld1 {v2.8b, v3.8b}, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 3:ld1 {v3.8b-v5.8b}, [x0]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 4:nop
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 5:add sp, sp, #0x20
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 6:ret
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 7:ldr w0, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 8:add w0, w0, #0x1
new FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 9:str w0, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: reverse-stepi
new FAIL: gdb.reverse/insn-reverse.exp: move: si
new FAIL: gdb.reverse/insn-reverse.exp: move: x/i $pc
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/06/06d949ec3121f4732e789db1efc53986355c9481//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/06/06d949ec3121f4732e789db1efc53986355c9481//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-23 17:59 [binutils-gdb] Add support for non-contiguous memory regions gdb-buildbot
@ 2020-03-27 4:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-27 4:26 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/2256
Author:
Christophe Lyon <christophe.lyon@linaro.org>
Commit tested:
abf874aafe3d717573e4a48bf0e3c6334e666a55
Subject of commit:
Add support for non-contiguous memory regions
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ab/abf874aafe3d717573e4a48bf0e3c6334e666a55/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
==============================================
*** 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/ab/abf874aafe3d717573e4a48bf0e3c6334e666a55//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/ab/abf874aafe3d717573e4a48bf0e3c6334e666a55//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-23 15:30 [binutils-gdb] x86: Check static link of dynamic objects gdb-buildbot
@ 2020-03-27 2:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-27 2:07 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/2255
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
74e10d1742f1b8312359c59a2af06c9e661252b3
Subject of commit:
x86: Check static link of dynamic objects
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/74/74e10d1742f1b8312359c59a2af06c9e661252b3/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: continue
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new UNRESOLVED: gdb.trace/passcount.exp: could not find gdb_recursion_test function
new UNRESOLVED: gdb.trace/passcount.exp: list actions.c:1
PASS -> UNRESOLVED: gdb.trace/unavailable.exp: unavailable floats: change to ctf target
PASS -> UNRESOLVED: gdb.trace/unavailable.exp: unavailable floats: ctf: tfind test frame
==============================================
*** 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/74/74e10d1742f1b8312359c59a2af06c9e661252b3//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/74/74e10d1742f1b8312359c59a2af06c9e661252b3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-23 14:06 [binutils-gdb] [gdb/testsuite] Fix buffer full errors in gdb.mi/mi-sym-info.exp gdb-buildbot
@ 2020-03-26 23:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-26 23:50 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/2254
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
2d61316c32a9fa3e14786c3312d9ca87c9298db5
Subject of commit:
[gdb/testsuite] Fix buffer full errors in gdb.mi/mi-sym-info.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2d/2d61316c32a9fa3e14786c3312d9ca87c9298db5/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2d/2d61316c32a9fa3e14786c3312d9ca87c9298db5//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/2d/2d61316c32a9fa3e14786c3312d9ca87c9298db5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-23 11:33 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp matching FAILs (2) gdb-buildbot
@ 2020-03-26 21:33 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-26 21:33 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/2253
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
2e9145ace2a520f942d74fea7df9458cc8a16523
Subject of commit:
[gdb/testsuite] Fix mi-sym-info.exp matching FAILs (2)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2e/2e9145ace2a520f942d74fea7df9458cc8a16523/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/2e/2e9145ace2a520f942d74fea7df9458cc8a16523//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/2e/2e9145ace2a520f942d74fea7df9458cc8a16523//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-23 9:45 [binutils-gdb] Recognize aarch64 PT_GETREGS and PT_GETFPREGS notes on NetBSD gdb-buildbot
@ 2020-03-26 19:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-26 19:15 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/2252
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
015ec493d8603095d212df443e7b75017b572455
Subject of commit:
Recognize aarch64 PT_GETREGS and PT_GETFPREGS notes on NetBSD
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/01/015ec493d8603095d212df443e7b75017b572455/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/01/015ec493d8603095d212df443e7b75017b572455//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/01/015ec493d8603095d212df443e7b75017b572455//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-23 8:01 [binutils-gdb] x86-64: correct mis-named X86_64_0D enumerator gdb-buildbot
@ 2020-03-26 16:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-26 16:58 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/2251
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
1673df3278637a911b55983a92e4d1f61816e57c
Subject of commit:
x86-64: correct mis-named X86_64_0D enumerator
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/16/1673df3278637a911b55983a92e4d1f61816e57c/
*** 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/16/1673df3278637a911b55983a92e4d1f61816e57c//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/16/1673df3278637a911b55983a92e4d1f61816e57c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-23 5:54 [binutils-gdb] [gdb/symtab] Fix partial unit psymtabs gdb-buildbot
@ 2020-03-26 14:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-26 14:40 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/2250
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
96c7f873945c31bb0f9facd526bfe6dac74d3ccb
Subject of commit:
[gdb/symtab] Fix partial unit psymtabs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/96/96c7f873945c31bb0f9facd526bfe6dac74d3ccb/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
==============================================
*** 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/96/96c7f873945c31bb0f9facd526bfe6dac74d3ccb//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/96/96c7f873945c31bb0f9facd526bfe6dac74d3ccb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-23 3:28 [binutils-gdb] Fix several mix up between octets and bytes in ELF program headers gdb-buildbot
@ 2020-03-26 12:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-26 12:22 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/2249
Author:
Christian Eggers <ceggers@gmx.de>
Commit tested:
666318230c54a348763927c80d085542d9890c42
Subject of commit:
Fix several mix up between octets and bytes in ELF program headers
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/66/666318230c54a348763927c80d085542d9890c42/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
==============================================
*** 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/66/666318230c54a348763927c80d085542d9890c42//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/66/666318230c54a348763927c80d085542d9890c42//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-23 1:42 [binutils-gdb] Fix several mix up between octets and bytes in ELF program headers gdb-buildbot
@ 2020-03-26 10:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-26 10:05 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/2248
Author:
Christian Eggers <ceggers@gmx.de>
Commit tested:
502794d4321dc17d5c9fb591bedc8761118b2943
Subject of commit:
Fix several mix up between octets and bytes in ELF program headers
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/50/502794d4321dc17d5c9fb591bedc8761118b2943/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================
*** 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/50/502794d4321dc17d5c9fb591bedc8761118b2943//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/50/502794d4321dc17d5c9fb591bedc8761118b2943//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-22 23:54 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp matching FAILs gdb-buildbot
@ 2020-03-26 7:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-26 7:47 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/2247
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
49ba92c0a6765ee7dc3a773c1a044680d29cee0e
Subject of commit:
[gdb/testsuite] Fix mi-sym-info.exp matching FAILs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/49/49ba92c0a6765ee7dc3a773c1a044680d29cee0e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/49/49ba92c0a6765ee7dc3a773c1a044680d29cee0e//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/49/49ba92c0a6765ee7dc3a773c1a044680d29cee0e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-22 22:06 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL in gdb.tui/corefile-run.exp gdb-buildbot
@ 2020-03-26 5:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-26 5:29 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/2246
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
301b21e0dfee41c7a93f41089428d5d03fee685b
Subject of commit:
[gdb/testsuite] Fix check-read1 FAIL in gdb.tui/corefile-run.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/30/301b21e0dfee41c7a93f41089428d5d03fee685b/
*** 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/30/301b21e0dfee41c7a93f41089428d5d03fee685b//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/30/301b21e0dfee41c7a93f41089428d5d03fee685b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-22 17:57 [binutils-gdb] Change gdbserver to use existing gdbsupport gdb-buildbot
@ 2020-03-26 0:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-26 0:54 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/2244
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
4635ff975351603e64da3cbdeec3b999ee842ac8
Subject of commit:
Change gdbserver to use existing gdbsupport
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/46/4635ff975351603e64da3cbdeec3b999ee842ac8/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/46/4635ff975351603e64da3cbdeec3b999ee842ac8//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/46/4635ff975351603e64da3cbdeec3b999ee842ac8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-22 11:51 [binutils-gdb] Cast to bfd_vma in arm-tdep.c gdb-buildbot
@ 2020-03-25 15:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-25 15:43 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/2240
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
227031b2bf03e7735601845d6c420995740c8fca
Subject of commit:
Cast to bfd_vma in arm-tdep.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/22/227031b2bf03e7735601845d6c420995740c8fca/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/22/227031b2bf03e7735601845d6c420995740c8fca//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/22/227031b2bf03e7735601845d6c420995740c8fca//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-22 6:26 [binutils-gdb] gdb: use foreach_with_prefix in gdb.base/break-interp.exp gdb-buildbot
@ 2020-03-25 8:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-25 8:50 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/2237
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
3f512721a829ce7b2d38236917309a32f42faa99
Subject of commit:
gdb: use foreach_with_prefix in gdb.base/break-interp.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3f/3f512721a829ce7b2d38236917309a32f42faa99/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=IN: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=NO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=IN: binpie=YES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=NO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=NO: binpie=YES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=NO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: binprelink=NO: binsepdebug=SEP: binpie=YES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: dl bt
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: ldprelink=NO: ldsepdebug=NO: symbol-less: seen displacement message as NONZERO
PASS -> FAIL: gdb.trace/ftrace.exp: advance through tracing
==============================================
*** 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/3f/3f512721a829ce7b2d38236917309a32f42faa99//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/3f/3f512721a829ce7b2d38236917309a32f42faa99//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-22 4:09 [binutils-gdb] gdb: make gdb.arch/amd64-disp-step-avx.exp actually test displaced stepping gdb-buildbot
@ 2020-03-25 6:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-25 6:32 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/2236
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
40310f30a51c1343b954d1fee7feb9a1d9455e9f
Subject of commit:
gdb: make gdb.arch/amd64-disp-step-avx.exp actually test displaced stepping
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/40/40310f30a51c1343b954d1fee7feb9a1d9455e9f/
*** 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/40/40310f30a51c1343b954d1fee7feb9a1d9455e9f//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/40/40310f30a51c1343b954d1fee7feb9a1d9455e9f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-22 2:23 [binutils-gdb] Move gdb/selftest.m4 to gdbsupport/selftest.m4 gdb-buildbot
@ 2020-03-25 4:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-25 4:14 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/2235
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
272cd5a31e7ff16fe46a5532e857b98229404c48
Subject of commit:
Move gdb/selftest.m4 to gdbsupport/selftest.m4
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/27/272cd5a31e7ff16fe46a5532e857b98229404c48/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/27/272cd5a31e7ff16fe46a5532e857b98229404c48//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/27/272cd5a31e7ff16fe46a5532e857b98229404c48//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-21 22:48 [binutils-gdb] Move sourcing of development.sh to GDB_AC_COMMON gdb-buildbot
@ 2020-03-24 23:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-24 23:38 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/2233
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
db6878ac5538661c8d66c916a533bd4268217fcb
Subject of commit:
Move sourcing of development.sh to GDB_AC_COMMON
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/db/db6878ac5538661c8d66c916a533bd4268217fcb/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
==============================================
*** 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/db/db6878ac5538661c8d66c916a533bd4268217fcb//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/db/db6878ac5538661c8d66c916a533bd4268217fcb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-21 18:48 [binutils-gdb] Remove use of deprecated core functions (in NetBSD/ARM) gdb-buildbot
@ 2020-03-24 17:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-24 17: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/2231
Author:
Christian Biesinger <cbiesinger@google.com>
Commit tested:
8dd8e1c7228d5dd57b3b36379718c806017988e1
Subject of commit:
Remove use of deprecated core functions (in NetBSD/ARM)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8d/8dd8e1c7228d5dd57b3b36379718c806017988e1/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/8d/8dd8e1c7228d5dd57b3b36379718c806017988e1//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/8d/8dd8e1c7228d5dd57b3b36379718c806017988e1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-21 14:51 [binutils-gdb] sim: ppc: netbsd: Sync errno codes with NetBSD 9.99.49 gdb-buildbot
@ 2020-03-24 12:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-24 12:06 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/2228
Author:
Kamil Rytarowski <n54@gmx.com>
Commit tested:
607c69321064f57595038d39af3328b0de73eb85
Subject of commit:
sim: ppc: netbsd: Sync errno codes with NetBSD 9.99.49
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/60/607c69321064f57595038d39af3328b0de73eb85/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/60/607c69321064f57595038d39af3328b0de73eb85//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/60/607c69321064f57595038d39af3328b0de73eb85//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-21 10:50 [binutils-gdb] [gdb/testsuite] Avoid breakpoint in GLIBC in gdb.threads/execl.exp gdb-buildbot
@ 2020-03-24 7:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-24 7:30 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/2226
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
14e9c72c334205c0171d62e716c1fb65472a0eab
Subject of commit:
[gdb/testsuite] Avoid breakpoint in GLIBC in gdb.threads/execl.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/14/14e9c72c334205c0171d62e716c1fb65472a0eab/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
==============================================
*** 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/14/14e9c72c334205c0171d62e716c1fb65472a0eab//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/14/14e9c72c334205c0171d62e716c1fb65472a0eab//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-21 9:02 [binutils-gdb] [gdb/testsuite] Fix internal buffer full error in gdb.fortran/module.exp gdb-buildbot
@ 2020-03-24 5:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-24 5:12 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/2225
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
e515d67ed61f7c588a3154589a8a25c7bef66d20
Subject of commit:
[gdb/testsuite] Fix internal buffer full error in gdb.fortran/module.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e5/e515d67ed61f7c588a3154589a8a25c7bef66d20/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e5/e515d67ed61f7c588a3154589a8a25c7bef66d20//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/e5/e515d67ed61f7c588a3154589a8a25c7bef66d20//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-21 7:15 [binutils-gdb] [gdb/testsuite] Fix dw2-ranges-base.exp FAIL with lib debuginfo gdb-buildbot
@ 2020-03-24 2:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-24 2:54 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/2224
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
307eafd8df3ec820bb62a71324aeed06b86ec050
Subject of commit:
[gdb/testsuite] Fix dw2-ranges-base.exp FAIL with lib debuginfo
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/30/307eafd8df3ec820bb62a71324aeed06b86ec050/
*** 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/30/307eafd8df3ec820bb62a71324aeed06b86ec050//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/30/307eafd8df3ec820bb62a71324aeed06b86ec050//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-21 5:30 [binutils-gdb] [gdb/testsuite] Fix gdb.linespec/explicit.exp FAIL with glibc debug info gdb-buildbot
@ 2020-03-24 0:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-24 0:36 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/2223
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
9a2de3fc7f7c40da6e8d5553c29e6cb8a2430dc8
Subject of commit:
[gdb/testsuite] Fix gdb.linespec/explicit.exp FAIL with glibc debug info
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9a/9a2de3fc7f7c40da6e8d5553c29e6cb8a2430dc8/
*** Diff to previous build ***
==============================================
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/9a/9a2de3fc7f7c40da6e8d5553c29e6cb8a2430dc8//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/9a/9a2de3fc7f7c40da6e8d5553c29e6cb8a2430dc8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-21 3:19 [binutils-gdb] [gdb/testsuite] Use string_to_regexp on core filename in gdb_core_cmd gdb-buildbot
@ 2020-03-23 22:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-23 22:18 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/2222
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
3217502e1ba7409676e192100a0147a49dd5ae7a
Subject of commit:
[gdb/testsuite] Use string_to_regexp on core filename in gdb_core_cmd
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/32/3217502e1ba7409676e192100a0147a49dd5ae7a/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new UNRESOLVED: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/32/3217502e1ba7409676e192100a0147a49dd5ae7a//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/32/3217502e1ba7409676e192100a0147a49dd5ae7a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-20 23:23 [binutils-gdb] Avoid infinite recursion in find_pc_sect_line gdb-buildbot
@ 2020-03-23 17:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-23 17:42 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/2220
Author:
Kevin Buettner <kevinb@redhat.com>
Commit tested:
dd69bf7a78a489783c397f2552eeb7999defcb6a
Subject of commit:
Avoid infinite recursion in find_pc_sect_line
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/dd/dd69bf7a78a489783c397f2552eeb7999defcb6a/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/dd/dd69bf7a78a489783c397f2552eeb7999defcb6a//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/dd/dd69bf7a78a489783c397f2552eeb7999defcb6a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-20 14:48 [binutils-gdb] [gdb/testsuite] Fix printf regexp in gdb.server/sysroot.exp gdb-buildbot
@ 2020-03-23 8:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-23 8:29 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/2216
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
f870f78fb2dc15cc5a4738d7ee592b39e2001c4e
Subject of commit:
[gdb/testsuite] Fix printf regexp in gdb.server/sysroot.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f8/f870f78fb2dc15cc5a4738d7ee592b39e2001c4e/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f8/f870f78fb2dc15cc5a4738d7ee592b39e2001c4e//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/f8/f870f78fb2dc15cc5a4738d7ee592b39e2001c4e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-20 5:10 [binutils-gdb] [gdb/testsuite] Fix FAILs due to verbose in foll-fork.exp gdb-buildbot
@ 2020-03-22 23:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-22 23:17 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/2212
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
7462c383f9849aab40f156854a72f0a93305124a
Subject of commit:
[gdb/testsuite] Fix FAILs due to verbose in foll-fork.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/74/7462c383f9849aab40f156854a72f0a93305124a/
*** 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/74/7462c383f9849aab40f156854a72f0a93305124a//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/74/7462c383f9849aab40f156854a72f0a93305124a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-20 0:54 [binutils-gdb] asan: som: unknown read gdb-buildbot
@ 2020-03-22 18:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-22 18:41 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/2210
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
8248d21a5b8b7bb9970163b8b327f5ac2f857f33
Subject of commit:
asan: som: unknown read
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/82/8248d21a5b8b7bb9970163b8b327f5ac2f857f33/
*** 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/82/8248d21a5b8b7bb9970163b8b327f5ac2f857f33//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/82/8248d21a5b8b7bb9970163b8b327f5ac2f857f33//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-19 22:11 [binutils-gdb] [gdb/testsuite] Fix missing uint8_t in gdb.fortran/logical.exp gdb-buildbot
@ 2020-03-22 16:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-22 16:23 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/2209
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
44f41bb7a1568dbe2e4e642e6c3c2e9ba3d47d92
Subject of commit:
[gdb/testsuite] Fix missing uint8_t in gdb.fortran/logical.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/44f41bb7a1568dbe2e4e642e6c3c2e9ba3d47d92/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/44f41bb7a1568dbe2e4e642e6c3c2e9ba3d47d92//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/44/44f41bb7a1568dbe2e4e642e6c3c2e9ba3d47d92//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-19 18:52 [binutils-gdb] gdb: Fix out of bounds array access in buildsym_compunit::record_line gdb-buildbot
@ 2020-03-22 14:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-22 14:05 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/2208
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
dcc050c86c3e5160497da7aab480adae9ba284aa
Subject of commit:
gdb: Fix out of bounds array access in buildsym_compunit::record_line
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/dc/dcc050c86c3e5160497da7aab480adae9ba284aa/
*** 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/dc/dcc050c86c3e5160497da7aab480adae9ba284aa//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/dc/dcc050c86c3e5160497da7aab480adae9ba284aa//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-19 12:51 [binutils-gdb] libctf: Mark bswap_identity_64 inline function as static gdb-buildbot
@ 2020-03-22 9:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-22 9:29 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/2206
Author:
John Baldwin <jhb@FreeBSD.org>
Commit tested:
119789424b62321e74a18fc1c088ebf479d999c4
Subject of commit:
libctf: Mark bswap_identity_64 inline function as static.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/11/119789424b62321e74a18fc1c088ebf479d999c4/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/11/119789424b62321e74a18fc1c088ebf479d999c4//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/11/119789424b62321e74a18fc1c088ebf479d999c4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-19 6:48 [binutils-gdb] gdb: Add support for tracking the DWARF line table is-stmt field gdb-buildbot
@ 2020-03-22 2:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-22 2:36 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/2203
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
8c95582da858ac981f689a6f599acacb8c5c490f
Subject of commit:
gdb: Add support for tracking the DWARF line table is-stmt field
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8c/8c95582da858ac981f689a6f599acacb8c5c490f/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/8c/8c95582da858ac981f689a6f599acacb8c5c490f//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/8c/8c95582da858ac981f689a6f599acacb8c5c490f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-19 5:08 [binutils-gdb] gdb/testsuite: Add is-stmt support to the DWARF compiler gdb-buildbot
@ 2020-03-22 0:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-22 0:18 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/2202
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
cecf854779049c3f491caf23f80d13eabbb90c86
Subject of commit:
gdb/testsuite: Add is-stmt support to the DWARF compiler
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/cecf854779049c3f491caf23f80d13eabbb90c86/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/cecf854779049c3f491caf23f80d13eabbb90c86//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/ce/cecf854779049c3f491caf23f80d13eabbb90c86//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-19 2:47 [binutils-gdb] ubsan: som: left shift of 1 by 31 places gdb-buildbot
@ 2020-03-21 22:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-21 22:00 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/2201
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
e10ac147c80240c2d0aa0a2ae2ec7f6a934c198f
Subject of commit:
ubsan: som: left shift of 1 by 31 places
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e1/e10ac147c80240c2d0aa0a2ae2ec7f6a934c198f/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e1/e10ac147c80240c2d0aa0a2ae2ec7f6a934c198f//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/e1/e10ac147c80240c2d0aa0a2ae2ec7f6a934c198f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-19 1:00 [binutils-gdb] PR25648, objcopy SIGSEGV in ihex_write_record gdb-buildbot
@ 2020-03-21 19:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-21 19:42 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/2200
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
6b5e16ffd3e8886fa3fb90d63e3200fcc373848e
Subject of commit:
PR25648, objcopy SIGSEGV in ihex_write_record
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6b/6b5e16ffd3e8886fa3fb90d63e3200fcc373848e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
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/6b/6b5e16ffd3e8886fa3fb90d63e3200fcc373848e//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/6b/6b5e16ffd3e8886fa3fb90d63e3200fcc373848e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-18 22:47 [binutils-gdb] x86: Also pass -P to $(CPP) when processing i386-opc.tbl gdb-buildbot
@ 2020-03-21 17:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-21 17:24 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/2199
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
384f368958f2a5bb083660e58e5f8a010e6ad429
Subject of commit:
x86: Also pass -P to $(CPP) when processing i386-opc.tbl
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/38/384f368958f2a5bb083660e58e5f8a010e6ad429/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================
*** 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/38/384f368958f2a5bb083660e58e5f8a010e6ad429//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/38/384f368958f2a5bb083660e58e5f8a010e6ad429//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-18 20:59 [binutils-gdb] [gdb/testsuite] Fix tcl error in cached_file gdb-buildbot
@ 2020-03-21 15:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-21 15:06 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/2198
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
0ba678c9ae62c20bb7f2370f51a4e9f1c8f2f409
Subject of commit:
[gdb/testsuite] Fix tcl error in cached_file
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0b/0ba678c9ae62c20bb7f2370f51a4e9f1c8f2f409/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/0b/0ba678c9ae62c20bb7f2370f51a4e9f1c8f2f409//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/0b/0ba678c9ae62c20bb7f2370f51a4e9f1c8f2f409//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-18 19:14 [binutils-gdb] x86: use template for AVX512 integer comparison insns gdb-buildbot
@ 2020-03-21 12:48 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-21 12:48 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/2197
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
865e20278c2665c13946a32ae67f55161b0d56d7
Subject of commit:
x86: use template for AVX512 integer comparison insns
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/86/865e20278c2665c13946a32ae67f55161b0d56d7/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
==============================================
*** 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/86/865e20278c2665c13946a32ae67f55161b0d56d7//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/86/865e20278c2665c13946a32ae67f55161b0d56d7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-18 16:28 [binutils-gdb] x86: use template for XOP integer comparison, shift, and rotate insns gdb-buildbot
@ 2020-03-21 10:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-21 10:30 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/2196
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
2f13234bc5e1a9fa50d555c746f2a0068014cbdc
Subject of commit:
x86: use template for XOP integer comparison, shift, and rotate insns
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2f/2f13234bc5e1a9fa50d555c746f2a0068014cbdc/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2f/2f13234bc5e1a9fa50d555c746f2a0068014cbdc//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/2f/2f13234bc5e1a9fa50d555c746f2a0068014cbdc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-18 14:40 [binutils-gdb] x86: use template for AVX/AVX512 floating point comparison insns gdb-buildbot
@ 2020-03-21 8:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-21 8:12 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/2195
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
3fabc17903800a7a943b811a5a20166f9a220ad6
Subject of commit:
x86: use template for AVX/AVX512 floating point comparison insns
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3f/3fabc17903800a7a943b811a5a20166f9a220ad6/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/3f/3fabc17903800a7a943b811a5a20166f9a220ad6//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/3f/3fabc17903800a7a943b811a5a20166f9a220ad6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-18 8:37 [binutils-gdb] asan: wasm: Out-of-memory gdb-buildbot
@ 2020-03-21 1:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-21 1:18 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/2192
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
2f57795b8b3cb2c416e91a16bc932480248e30d7
Subject of commit:
asan: wasm: Out-of-memory
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2f/2f57795b8b3cb2c416e91a16bc932480248e30d7/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: cmd complete "b test_op_SR::operator >> "
PASS -> FAIL: gdb.linespec/cpls-ops.exp: ops-valid-unique: whitespace: tab complete "b test_op_SR::operator >> "
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2f/2f57795b8b3cb2c416e91a16bc932480248e30d7//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/2f/2f57795b8b3cb2c416e91a16bc932480248e30d7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-17 19:25 [binutils-gdb] [gdb] Support anonymous typedef generated by gcc -feliminate-dwarf2-dups gdb-buildbot
@ 2020-03-20 6:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-20 6:24 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/2188
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
e4003a3495bbdbcb28b3a87467a12b95d30e3b8a
Subject of commit:
[gdb] Support anonymous typedef generated by gcc -feliminate-dwarf2-dups
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e4/e4003a3495bbdbcb28b3a87467a12b95d30e3b8a/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e4/e4003a3495bbdbcb28b3a87467a12b95d30e3b8a//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/e4/e4003a3495bbdbcb28b3a87467a12b95d30e3b8a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-17 14:51 [binutils-gdb] Pass thread_info pointer to various inferior control functions gdb-buildbot
@ 2020-03-20 1:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-20 1:46 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/2186
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
29734269a7d1f2909814ff9c518c295c9640d6f5
Subject of commit:
Pass thread_info pointer to various inferior control functions
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/29/29734269a7d1f2909814ff9c518c295c9640d6f5/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/29/29734269a7d1f2909814ff9c518c295c9640d6f5//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/29/29734269a7d1f2909814ff9c518c295c9640d6f5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-17 10:47 [binutils-gdb] [gdb/testsuite] Fix "text file busy" errors with cc-with-tweaks.exp gdb-buildbot
@ 2020-03-19 16:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-19 16:32 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/2182
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
436b5e99c8eef55433f2c1de35d8f960425aa4c1
Subject of commit:
[gdb/testsuite] Fix "text file busy" errors with cc-with-tweaks.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/43/436b5e99c8eef55433f2c1de35d8f960425aa4c1/
*** 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
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
==============================================
*** 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/43/436b5e99c8eef55433f2c1de35d8f960425aa4c1//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/43/436b5e99c8eef55433f2c1de35d8f960425aa4c1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-17 7:08 [binutils-gdb] [gdb] Remove trailing "done" after "Reading symbols from" message gdb-buildbot
@ 2020-03-19 11:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-19 11:55 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/2180
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
fd760e798eb8c325f0d7bab7ddcb74f64dc4c113
Subject of commit:
[gdb] Remove trailing "done" after "Reading symbols from" message
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fd/fd760e798eb8c325f0d7bab7ddcb74f64dc4c113/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/fd/fd760e798eb8c325f0d7bab7ddcb74f64dc4c113//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/fd/fd760e798eb8c325f0d7bab7ddcb74f64dc4c113//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-17 4:48 [binutils-gdb] gdbserver/gdbsupport: Add .dir-locals.el file gdb-buildbot
@ 2020-03-19 9:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-19 9:37 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/2179
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
20ea4a609c44e5795a57c7b409e99442f8a44a0d
Subject of commit:
gdbserver/gdbsupport: Add .dir-locals.el file
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/20/20ea4a609c44e5795a57c7b409e99442f8a44a0d/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/20/20ea4a609c44e5795a57c7b409e99442f8a44a0d//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/20/20ea4a609c44e5795a57c7b409e99442f8a44a0d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-16 21:27 [binutils-gdb] x86: drop/replace IgnoreSize gdb-buildbot
@ 2020-03-19 2:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-19 2:42 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/2176
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
4873e2438cf87b14476459ca90b58ed8a7401181
Subject of commit:
x86: drop/replace IgnoreSize
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/48/4873e2438cf87b14476459ca90b58ed8a7401181/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/48/4873e2438cf87b14476459ca90b58ed8a7401181//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/48/4873e2438cf87b14476459ca90b58ed8a7401181//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-16 18:49 [binutils-gdb] x86: replace NoRex64 on VEX-encoded insns gdb-buildbot
@ 2020-03-18 22:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-18 22:05 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/2174
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
4ed21b58d4b8331806b9e88da18898235942f425
Subject of commit:
x86: replace NoRex64 on VEX-encoded insns
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4e/4ed21b58d4b8331806b9e88da18898235942f425/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/4e/4ed21b58d4b8331806b9e88da18898235942f425//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/4e/4ed21b58d4b8331806b9e88da18898235942f425//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-16 16:33 [binutils-gdb] x86: drop Rex64 attribute gdb-buildbot
@ 2020-03-18 19:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-18 19:47 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/2173
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
643bb87079dd96aed99ff1572375a88179afcd15
Subject of commit:
x86: drop Rex64 attribute
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/64/643bb87079dd96aed99ff1572375a88179afcd15/
*** Diff to previous build ***
==============================================
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/64/643bb87079dd96aed99ff1572375a88179afcd15//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/64/643bb87079dd96aed99ff1572375a88179afcd15//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-16 14:43 [binutils-gdb] x86: correct MPX insn w/o base or index encoding in 16-bit mode gdb-buildbot
@ 2020-03-18 17:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-18 17:29 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/2172
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
a23b33b3d131f240b2525d9a24831b33f2b43e26
Subject of commit:
x86: correct MPX insn w/o base or index encoding in 16-bit mode
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a2/a23b33b3d131f240b2525d9a24831b33f2b43e26/
*** 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 -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
new UNRESOLVED: gdb.trace/trace-break.exp: 5 trace trace trace@1: can't run to main
new FAIL: gdb.trace/trace-mt.exp: step over ftrace: can't run to main
PASS -> UNRESOLVED: gdb.trace/trace-mt.exp: step over ftrace: set non-stop 0
==============================================
*** 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/a2/a23b33b3d131f240b2525d9a24831b33f2b43e26//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/a2/a23b33b3d131f240b2525d9a24831b33f2b43e26//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-16 12:46 [binutils-gdb] x86: add missing IgnoreSize gdb-buildbot
@ 2020-03-18 15:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-18 15:11 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/2171
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
a04973848dc529f4eeb3bd198251da9faf01e2a2
Subject of commit:
x86: add missing IgnoreSize
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a0/a04973848dc529f4eeb3bd198251da9faf01e2a2/
*** 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/a0/a04973848dc529f4eeb3bd198251da9faf01e2a2//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/a0/a04973848dc529f4eeb3bd198251da9faf01e2a2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-16 8:32 [binutils-gdb] bfd: xtensa: fix PR ld/25630 gdb-buildbot
@ 2020-03-18 10:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-18 10:34 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/2169
Author:
Max Filippov <jcmvbkbc@gmail.com>
Commit tested:
e15a8da9c71336b06cb5f2706c3f6b7e6ddd95a3
Subject of commit:
bfd: xtensa: fix PR ld/25630
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e1/e15a8da9c71336b06cb5f2706c3f6b7e6ddd95a3/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e1/e15a8da9c71336b06cb5f2706c3f6b7e6ddd95a3//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/e1/e15a8da9c71336b06cb5f2706c3f6b7e6ddd95a3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-16 4:30 [binutils-gdb] gdbsupport/configure.ac: source development.sh gdb-buildbot
@ 2020-03-18 5:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-18 5:57 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/2167
Author:
Vyacheslav Petrishchev <vyachemail@gmail.com>
Commit tested:
3d1e5a43cbe1780ea66df0fe091998ee61177899
Subject of commit:
gdbsupport/configure.ac: source development.sh
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3d/3d1e5a43cbe1780ea66df0fe091998ee61177899/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/3d/3d1e5a43cbe1780ea66df0fe091998ee61177899//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/3d/3d1e5a43cbe1780ea66df0fe091998ee61177899//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-16 2:46 [binutils-gdb] Add support for ELF files which contain multiple reloc sections which all target the same section gdb-buildbot
@ 2020-03-18 3:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-18 3:39 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/2166
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
a8e14f4cc2badfcf959f5e2cc57a941dc43f72d4
Subject of commit:
Add support for ELF files which contain multiple reloc sections which all target the same section.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a8e14f4cc2badfcf959f5e2cc57a941dc43f72d4/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/a8/a8e14f4cc2badfcf959f5e2cc57a941dc43f72d4//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/a8/a8e14f4cc2badfcf959f5e2cc57a941dc43f72d4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-16 0:44 [binutils-gdb] gdb, gdbserver, gdbsupport: add .gitattributes files gdb-buildbot
@ 2020-03-18 1:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-18 1:20 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/2165
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
842806cb6f1c321666dd086a79a0fdfbd35497ed
Subject of commit:
gdb, gdbserver, gdbsupport: add .gitattributes files
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/84/842806cb6f1c321666dd086a79a0fdfbd35497ed/
*** 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/84/842806cb6f1c321666dd086a79a0fdfbd35497ed//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/84/842806cb6f1c321666dd086a79a0fdfbd35497ed//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-15 18:34 [binutils-gdb] Introduce objfile::intern gdb-buildbot
@ 2020-03-17 18:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-17 18:26 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/2162
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
be1e3d3eab0af2a140463757a1ba3977167551af
Subject of commit:
Introduce objfile::intern
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/be/be1e3d3eab0af2a140463757a1ba3977167551af/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/maint.exp: maint print statistics
==============================================
*** 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/be/be1e3d3eab0af2a140463757a1ba3977167551af//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/be/be1e3d3eab0af2a140463757a1ba3977167551af//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-15 16:46 [binutils-gdb] Make "gnutarget" const gdb-buildbot
@ 2020-03-17 16:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-17 16:07 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/2161
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
4e7625fde223fd0c98f09f41fe924e7317a82e1a
Subject of commit:
Make "gnutarget" const
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4e/4e7625fde223fd0c98f09f41fe924e7317a82e1a/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/4e/4e7625fde223fd0c98f09f41fe924e7317a82e1a//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/4e/4e7625fde223fd0c98f09f41fe924e7317a82e1a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-15 12:56 [binutils-gdb] Revert "gdb: Do not print empty-group regs when printing general ones" gdb-buildbot
@ 2020-03-17 11:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-17 11:30 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/2159
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
440cf44eb0f70830b8d8ac35289f84129c7a35c1
Subject of commit:
Revert "gdb: Do not print empty-group regs when printing general ones"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/440cf44eb0f70830b8d8ac35289f84129c7a35c1/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/440cf44eb0f70830b8d8ac35289f84129c7a35c1//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/44/440cf44eb0f70830b8d8ac35289f84129c7a35c1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-15 9:06 [binutils-gdb] x86: support VMGEXIT gdb-buildbot
@ 2020-03-17 6:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-17 6:54 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/2157
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
a847e32224d9a4297514a9a291c024c207eefdb9
Subject of commit:
x86: support VMGEXIT
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a847e32224d9a4297514a9a291c024c207eefdb9/
*** 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/a8/a847e32224d9a4297514a9a291c024c207eefdb9//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/a8/a847e32224d9a4297514a9a291c024c207eefdb9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-15 3:17 [binutils-gdb] Find tailcall frames before inline frames gdb-buildbot
@ 2020-03-17 0:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-17 0:00 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/2154
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
1009d92fc621bc4d017029b90a5bfab16e17fde5
Subject of commit:
Find tailcall frames before inline frames
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/10/1009d92fc621bc4d017029b90a5bfab16e17fde5/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.opt/inline-break.exp: cmd=break: bt stopped in inline_func1
PASS -> FAIL: gdb.opt/inline-break.exp: cmd=break: continue to breakpoint: inline_func1
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: could not run to main
new UNRESOLVED: gdb.opt/inline-break.exp: cmd=tbreak: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.opt/inline-cmds.exp: backtrace at inlined_fn from noinline
PASS -> FAIL: gdb.opt/inline-cmds.exp: inlined_fn from noinline inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: main not inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: noinline from outer_inline1 not inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: outer_inline1 inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: outer_inline2 inlined
PASS -> FAIL: gdb.opt/inline-cmds.exp: up from outer_inline2
PASS -> FAIL: gdb.opt/inline-cmds.exp: up to noinline
PASS -> FAIL: gdb.opt/inline-cmds.exp: up to outer_inline1
PASS -> FAIL: gdb.opt/inline-cmds.exp: up to outer_inline2
PASS -> FAIL: gdb.python/py-frame-inline.exp: info frame
PASS -> FAIL: gdb.python/py-frame-inline.exp: python print
PASS -> FAIL: gdb.python/py-frame-inline.exp: up
new FAIL: gdb.reverse/insn-reverse.exp: move: capture_command_output for info all-registers
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 0:mov x0, sp
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 10:adrp x0, 0xaaaaaaabb000
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 11:add x0, x0, #0x10
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 12:ldr w0, [x0]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 13:ldr w1, [x29, #28]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 14:cmp w1, w0
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 15:b.lt 0xaaaaaaaaa8a8 <main+24> // b.tstop
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 16:adrp x0, 0xaaaaaaabb000
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 17:add x0, x0, #0x18
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 18:ldrsw x1, [x29, #28]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 19:ldr x0, [x0, x1, lsl #3]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 1:ld1 {v1.8b}, [x0]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 20:blr x0
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 21:sub sp, sp, #0x30
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 22:mov w0, #0x42f60000 // #1123418112
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 23:fmov s0, w0
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 24:str s0, [sp, #4]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 2:ld1 {v2.8b, v3.8b}, [x0]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 3:ld1 {v3.8b-v5.8b}, [x0]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 4:nop
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 5:add sp, sp, #0x20
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 6:ret
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 7:ldr w0, [x29, #28]
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 8:add w0, w0, #0x1
PASS -> FAIL: gdb.reverse/insn-reverse.exp: move: compare registers on insn 9:str w0, [x29, #28]
new FAIL: gdb.reverse/insn-reverse.exp: move: reverse-stepi
new FAIL: gdb.reverse/insn-reverse.exp: move: si
new FAIL: gdb.reverse/insn-reverse.exp: move: x/i $pc
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-extended-gdbserver-m64/10/1009d92fc621bc4d017029b90a5bfab16e17fde5//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/10/1009d92fc621bc4d017029b90a5bfab16e17fde5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-15 1:38 [binutils-gdb] gdbsupport: re-generate Makefile.in gdb-buildbot
@ 2020-03-16 21:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-16 21:42 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/2153
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
89725b0d5357b85ffc35ae451db0c0ddf1aa5831
Subject of commit:
gdbsupport: re-generate Makefile.in
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/89/89725b0d5357b85ffc35ae451db0c0ddf1aa5831/
*** 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/89/89725b0d5357b85ffc35ae451db0c0ddf1aa5831//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/89/89725b0d5357b85ffc35ae451db0c0ddf1aa5831//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-14 23:19 [binutils-gdb] x86: Replace IgnoreSize/DefaultSize with MnemonicSize gdb-buildbot
@ 2020-03-16 19:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-16 19:14 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/2152
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
3cd7f3e3bdab2b9f5fa0005ce2b8333b46843c3e
Subject of commit:
x86: Replace IgnoreSize/DefaultSize with MnemonicSize
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3c/3cd7f3e3bdab2b9f5fa0005ce2b8333b46843c3e/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/3c/3cd7f3e3bdab2b9f5fa0005ce2b8333b46843c3e//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/3c/3cd7f3e3bdab2b9f5fa0005ce2b8333b46843c3e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-14 19:45 [binutils-gdb] Rebase executable to match relocated base address gdb-buildbot
@ 2020-03-16 14:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-16 14:34 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/2150
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
584cf46d0ab5960cca76bfaf414cee5641166868
Subject of commit:
Rebase executable to match relocated base address
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/58/584cf46d0ab5960cca76bfaf414cee5641166868/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/58/584cf46d0ab5960cca76bfaf414cee5641166868//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/58/584cf46d0ab5960cca76bfaf414cee5641166868//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-14 18:03 [binutils-gdb] The patch fixed invalid compilation of instruction LD IY, (HL) and disassemble of this and LD (HL), IX instruction. Also it update testsuit gdb-buildbot
@ 2020-03-16 12:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-16 12:14 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/2149
Author:
Sergey Belyashov <sergey.belyashov@gmail.com>
Commit tested:
b8ba13856360d1cae00269a0ffe291cf573bb575
Subject of commit:
The patch fixed invalid compilation of instruction LD IY,(HL) and disassemble of this and LD (HL),IX instruction. Also it update testsuit.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b8/b8ba13856360d1cae00269a0ffe291cf573bb575/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/b8/b8ba13856360d1cae00269a0ffe291cf573bb575//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/b8/b8ba13856360d1cae00269a0ffe291cf573bb575//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-14 12:06 [binutils-gdb] Update GDB to use new AUXV entry types gdb-buildbot
@ 2020-03-16 5:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-16 5:13 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/2146
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
bb7b70ab85fb9d185d1fa6bad192c90fe9c17ff3
Subject of commit:
Update GDB to use new AUXV entry types
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bb/bb7b70ab85fb9d185d1fa6bad192c90fe9c17ff3/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/bb/bb7b70ab85fb9d185d1fa6bad192c90fe9c17ff3//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/bb/bb7b70ab85fb9d185d1fa6bad192c90fe9c17ff3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-14 8:26 [binutils-gdb] bfd_check_format_matches preserving matches vs. cleanups gdb-buildbot
@ 2020-03-16 0:33 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-16 0:33 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/2144
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
f57140990f9be3232ffbc708fb1aade032052c80
Subject of commit:
bfd_check_format_matches preserving matches vs. cleanups
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f5/f57140990f9be3232ffbc708fb1aade032052c80/
*** 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/f5/f57140990f9be3232ffbc708fb1aade032052c80//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/f5/f57140990f9be3232ffbc708fb1aade032052c80//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-14 6:22 [binutils-gdb] [gdb/testsuite] Fix gdb.mi/gdb2549.exp with check-read1 gdb-buildbot
@ 2020-03-15 22:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-15 22:13 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/2143
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
478e490a4df79436d678ca5f5f1d7c7ac7befa79
Subject of commit:
[gdb/testsuite] Fix gdb.mi/gdb2549.exp with check-read1
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/47/478e490a4df79436d678ca5f5f1d7c7ac7befa79/
*** Diff to previous build ***
==============================================
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/tls.exp: print a_thread_local
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable registers: ctf: info registers, multiple registers not available
new FAIL: gdb.trace/unavailable.exp: unavailable registers: info registers, multiple registers not available
new FAIL: gdb.trace/unavailable.exp: unavailable registers: tfile: info registers, multiple registers not available
==============================================
*** 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/47/478e490a4df79436d678ca5f5f1d7c7ac7befa79//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/47/478e490a4df79436d678ca5f5f1d7c7ac7befa79//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-14 4:33 [binutils-gdb] [gdb/testsuite] Fix tcl error in gdb.mi/list-thread-groups-available.exp gdb-buildbot
@ 2020-03-15 19:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-15 19:52 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/2142
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
1ef44e861d58ba10674f107a79471852fbd27cda
Subject of commit:
[gdb/testsuite] Fix tcl error in gdb.mi/list-thread-groups-available.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1e/1ef44e861d58ba10674f107a79471852fbd27cda/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/1e/1ef44e861d58ba10674f107a79471852fbd27cda//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/1e/1ef44e861d58ba10674f107a79471852fbd27cda//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-14 2:47 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp with check-read1 gdb-buildbot
@ 2020-03-15 17:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-15 17:32 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/2141
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
b98cc2cf1aecd4b9348252832b4b0bef727866cf
Subject of commit:
[gdb/testsuite] Fix mi-sym-info.exp with check-read1
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b9/b98cc2cf1aecd4b9348252832b4b0bef727866cf/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/b9/b98cc2cf1aecd4b9348252832b4b0bef727866cf//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/b9/b98cc2cf1aecd4b9348252832b4b0bef727866cf//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-14 0:55 [binutils-gdb] Small clean up of use_displaced_stepping gdb-buildbot
@ 2020-03-15 15:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-15 15:12 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/2140
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
9822cb57f7570a3b2c8fd95ec2f7b9f9890e30a4
Subject of commit:
Small clean up of use_displaced_stepping
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/98/9822cb57f7570a3b2c8fd95ec2f7b9f9890e30a4/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable registers: ctf: info registers, multiple registers not available
new FAIL: gdb.trace/unavailable.exp: unavailable registers: info registers, multiple registers not available
new FAIL: gdb.trace/unavailable.exp: unavailable registers: tfile: info registers, multiple registers not available
==============================================
*** 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/98/9822cb57f7570a3b2c8fd95ec2f7b9f9890e30a4//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/98/9822cb57f7570a3b2c8fd95ec2f7b9f9890e30a4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-13 22:01 [binutils-gdb] gdb: Allow GDB to _not_ load a previous command history gdb-buildbot
@ 2020-03-15 12:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-15 12:52 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/2139
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
63e163f24fe80fe1509527e6ccfcfb9622f5e99e
Subject of commit:
gdb: Allow GDB to _not_ load a previous command history
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/63/63e163f24fe80fe1509527e6ccfcfb9622f5e99e/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/gdbinit-history.exp: GDBHISTFILE is empty: show commands
new FAIL: gdb.base/gdbinit-history.exp: load GDBHISTFILE history file: show commands
new FAIL: gdb.base/gdbinit-history.exp: load default history file: show commands
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
PASS -> FAIL: gdb.trace/collection.exp: collect local string: advance to begin
PASS -> FAIL: gdb.trace/collection.exp: collect local string: cease trace debugging
PASS -> FAIL: gdb.trace/collection.exp: collect local string: collected local string
PASS -> FAIL: gdb.trace/collection.exp: collect local string: define actions
PASS -> UNRESOLVED: gdb.trace/collection.exp: collect local string: find tracepoint line
PASS -> FAIL: gdb.trace/collection.exp: collect local string: run trace experiment
PASS -> FAIL: gdb.trace/collection.exp: collect local string: start trace experiment
PASS -> FAIL: gdb.trace/collection.exp: collect local string: tfind test frame
==============================================
*** 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/63/63e163f24fe80fe1509527e6ccfcfb9622f5e99e//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/63/63e163f24fe80fe1509527e6ccfcfb9622f5e99e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-13 20:14 [binutils-gdb] Fix arm-netbsd build error: convert from FPA to VFP gdb-buildbot
@ 2020-03-15 10:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-15 10:32 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/2138
Author:
Christian Biesinger <cbiesinger@google.com>
Commit tested:
81b86b9702b5be9d022e9b0c96c1ee2ce339b5b9
Subject of commit:
Fix arm-netbsd build error: convert from FPA to VFP
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/81/81b86b9702b5be9d022e9b0c96c1ee2ce339b5b9/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/81/81b86b9702b5be9d022e9b0c96c1ee2ce339b5b9//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/81/81b86b9702b5be9d022e9b0c96c1ee2ce339b5b9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-13 18:10 [binutils-gdb] gdb/remote: Restore support for 'S' stop reply packet gdb-buildbot
@ 2020-03-15 8:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-15 8:12 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/2137
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
24ed6739b699f329c2c45aedee5f8c7d2f54e493
Subject of commit:
gdb/remote: Restore support for 'S' stop reply packet
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/24/24ed6739b699f329c2c45aedee5f8c7d2f54e493/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/24/24ed6739b699f329c2c45aedee5f8c7d2f54e493//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/24/24ed6739b699f329c2c45aedee5f8c7d2f54e493//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-13 13:34 [binutils-gdb] [gdb/testsuite] Add -lbl option in gdb_test_multiple gdb-buildbot
@ 2020-03-15 3:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-15 3:31 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/2135
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
590003dc0ea7653ead62899d850fba0a5c4a595e
Subject of commit:
[gdb/testsuite] Add -lbl option in gdb_test_multiple
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/59/590003dc0ea7653ead62899d850fba0a5c4a595e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: 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-extended-gdbserver-m64/59/590003dc0ea7653ead62899d850fba0a5c4a595e//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/59/590003dc0ea7653ead62899d850fba0a5c4a595e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-13 12:13 [binutils-gdb] Re: bfd_cleanup for object_p gdb-buildbot
@ 2020-03-15 1:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-15 1:11 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/2134
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
40b35c78b62eec2ab41219906a7ea0c0be323499
Subject of commit:
Re: bfd_cleanup for object_p
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/40/40b35c78b62eec2ab41219906a7ea0c0be323499/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/40/40b35c78b62eec2ab41219906a7ea0c0be323499//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/40/40b35c78b62eec2ab41219906a7ea0c0be323499//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-13 7:45 [binutils-gdb] gdb: Move defs.h before any system header in debuginfod-support.c gdb-buildbot
@ 2020-03-14 20:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-14 20:30 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/2132
Author:
Jon Turney <jon.turney@dronecode.org.uk>
Commit tested:
a84bb2a0790125f5fb5df65b7873fb6076164527
Subject of commit:
gdb: Move defs.h before any system header in debuginfod-support.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a84bb2a0790125f5fb5df65b7873fb6076164527/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a84bb2a0790125f5fb5df65b7873fb6076164527//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/a8/a84bb2a0790125f5fb5df65b7873fb6076164527//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-13 5:52 [binutils-gdb] trad_unix_core_file_p: Return bfd_cleanup gdb-buildbot
@ 2020-03-14 18:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-14 18:10 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/2131
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
728d32c496435cbd2529f7de9f5277d88c9c04e2
Subject of commit:
trad_unix_core_file_p: Return bfd_cleanup
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/72/728d32c496435cbd2529f7de9f5277d88c9c04e2/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/72/728d32c496435cbd2529f7de9f5277d88c9c04e2//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/72/728d32c496435cbd2529f7de9f5277d88c9c04e2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-13 0:14 [binutils-gdb] miscellaneous SEC_SMALL_DATA gdb-buildbot
@ 2020-03-14 11:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-14 11:07 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/2128
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
a4dd6c97bd5c7e2cc58f4d2a0b83145646f67cc7
Subject of commit:
miscellaneous SEC_SMALL_DATA
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a4/a4dd6c97bd5c7e2cc58f4d2a0b83145646f67cc7/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a4/a4dd6c97bd5c7e2cc58f4d2a0b83145646f67cc7//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/a4/a4dd6c97bd5c7e2cc58f4d2a0b83145646f67cc7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-12 22:22 [binutils-gdb] ELF SEC_SMALL_DATA gdb-buildbot
@ 2020-03-14 8:45 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-14 8:45 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/2127
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
bf57746745ac0c0d2922de5af5f0d8527d7a585a
Subject of commit:
ELF SEC_SMALL_DATA
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bf/bf57746745ac0c0d2922de5af5f0d8527d7a585a/
*** 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/bf/bf57746745ac0c0d2922de5af5f0d8527d7a585a//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/bf/bf57746745ac0c0d2922de5af5f0d8527d7a585a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-12 19:09 [binutils-gdb] elf_backend_section_flags and _bfd_elf_init_private_section_data gdb-buildbot
@ 2020-03-14 6:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-14 6:25 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/2126
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
8c803a2dd7d3d742a3d0071914f557ef465afe71
Subject of commit:
elf_backend_section_flags and _bfd_elf_init_private_section_data
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8c/8c803a2dd7d3d742a3d0071914f557ef465afe71/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
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-extended-gdbserver-m64/8c/8c803a2dd7d3d742a3d0071914f557ef465afe71//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/8c/8c803a2dd7d3d742a3d0071914f557ef465afe71//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-12 15:00 [binutils-gdb] alpha-vms: prevent endless recursion gdb-buildbot
@ 2020-03-14 1:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-14 1:44 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/2124
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
26f60d59391c851465e6db26bdedfeeecdcff155
Subject of commit:
alpha-vms: prevent endless recursion
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/26/26f60d59391c851465e6db26bdedfeeecdcff155/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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-extended-gdbserver-m64/26/26f60d59391c851465e6db26bdedfeeecdcff155//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/26/26f60d59391c851465e6db26bdedfeeecdcff155//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-12 12:45 [binutils-gdb] alpha-vms: error paths not freeing memory and malloc result checks gdb-buildbot
@ 2020-03-13 23:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-13 23:24 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/2123
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
9cb56943d7f8de419d15e7ff1614d342b4682340
Subject of commit:
alpha-vms: error paths not freeing memory and malloc result checks
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9c/9cb56943d7f8de419d15e7ff1614d342b4682340/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/9c/9cb56943d7f8de419d15e7ff1614d342b4682340//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/9c/9cb56943d7f8de419d15e7ff1614d342b4682340//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-12 4:49 [binutils-gdb] Update libinproctrace.so path in lib/trace-support.exp gdb-buildbot
@ 2020-03-13 10:48 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-13 10:48 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/2121
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
f5e4608433541a29da8dddc0ceeb63d36c12dda5
Subject of commit:
Update libinproctrace.so path in lib/trace-support.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f5/f5e4608433541a29da8dddc0ceeb63d36c12dda5/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
==============================================
*** 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/f5/f5e4608433541a29da8dddc0ceeb63d36c12dda5//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/f5/f5e4608433541a29da8dddc0ceeb63d36c12dda5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-11 23:24 [binutils-gdb] Fix comment for 'gdb_dlopen' gdb-buildbot
@ 2020-03-13 8:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-13 8:28 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/2120
Author:
Sergio Durigan Junior <sergiodj@redhat.com>
Commit tested:
d7592e974706637058867b02626c52a30ef0a2ee
Subject of commit:
Fix comment for 'gdb_dlopen'
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d7/d7592e974706637058867b02626c52a30ef0a2ee/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================
*** 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/d7/d7592e974706637058867b02626c52a30ef0a2ee//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/d7/d7592e974706637058867b02626c52a30ef0a2ee//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-11 21:36 [binutils-gdb] Fix SVE-related failure in gdb.arch/aarch64-fp.exp gdb-buildbot
@ 2020-03-13 6:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-13 6:08 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/2119
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
f7a7000d486f6fc456e9332214b89d01c3639fb1
Subject of commit:
Fix SVE-related failure in gdb.arch/aarch64-fp.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f7/f7a7000d486f6fc456e9332214b89d01c3639fb1/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f7/f7a7000d486f6fc456e9332214b89d01c3639fb1//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/f7/f7a7000d486f6fc456e9332214b89d01c3639fb1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-11 19:08 [binutils-gdb] Fix gdb.arch/aarch64-dbreg-contents.exp build failures gdb-buildbot
@ 2020-03-13 3:48 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-13 3:48 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/2118
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
718e081605e86b7421afc1b3ab2e4918292dd254
Subject of commit:
Fix gdb.arch/aarch64-dbreg-contents.exp build failures
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/71/718e081605e86b7421afc1b3ab2e4918292dd254/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================
*** 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/71/718e081605e86b7421afc1b3ab2e4918292dd254//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/71/718e081605e86b7421afc1b3ab2e4918292dd254//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-11 17:21 [binutils-gdb] [gdb] Don't set initial language using previous language gdb-buildbot
@ 2020-03-13 1:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-13 1:29 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/2117
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
658dadf0b02b618fe81e7b09ad930479941f2236
Subject of commit:
[gdb] Don't set initial language using previous language
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/65/658dadf0b02b618fe81e7b09ad930479941f2236/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: 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-extended-gdbserver-m64/65/658dadf0b02b618fe81e7b09ad930479941f2236//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/65/658dadf0b02b618fe81e7b09ad930479941f2236//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-11 15:19 [binutils-gdb] Pass correct die_reader_specs in cutu_reader::init_tu_and_read_dwo_dies gdb-buildbot
@ 2020-03-12 21:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-12 21:20 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/2116
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
4ebe487749c5a3bac19ccaf36fc734a0d29a990e
Subject of commit:
Pass correct die_reader_specs in cutu_reader::init_tu_and_read_dwo_dies
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4e/4ebe487749c5a3bac19ccaf36fc734a0d29a990e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
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/4e/4ebe487749c5a3bac19ccaf36fc734a0d29a990e//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/4e/4ebe487749c5a3bac19ccaf36fc734a0d29a990e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-11 12:58 [binutils-gdb] [gdb/testsuite] Fix psymtab expansion postponement in c-linkage-name.exp gdb-buildbot
@ 2020-03-12 19:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-12 19:00 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/2115
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
13c3a74afb50b240dbacfd60f91414eae50279ad
Subject of commit:
[gdb/testsuite] Fix psymtab expansion postponement in c-linkage-name.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/13/13c3a74afb50b240dbacfd60f91414eae50279ad/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/13/13c3a74afb50b240dbacfd60f91414eae50279ad//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/13/13c3a74afb50b240dbacfd60f91414eae50279ad//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-11 9:19 [binutils-gdb] alpha-vms: memory leak gdb-buildbot
@ 2020-03-12 14:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-12 14:15 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/2113
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
182ec6707c9fcca84d488413d4ddbbd9d12639fe
Subject of commit:
alpha-vms: memory leak
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/18/182ec6707c9fcca84d488413d4ddbbd9d12639fe/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/18/182ec6707c9fcca84d488413d4ddbbd9d12639fe//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/18/182ec6707c9fcca84d488413d4ddbbd9d12639fe//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-11 5:38 [binutils-gdb] gdb: Check for nullptr when computing srcpath gdb-buildbot
@ 2020-03-12 9:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-12 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/2111
Author:
Aaron Merey <amerey@redhat.com>
Commit tested:
e5da11393a16416afc0c0a1da9914b6424f37fa8
Subject of commit:
gdb: Check for nullptr when computing srcpath
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e5/e5da11393a16416afc0c0a1da9914b6424f37fa8/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================
*** 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/e5/e5da11393a16416afc0c0a1da9914b6424f37fa8//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/e5/e5da11393a16416afc0c0a1da9914b6424f37fa8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-11 3:44 [binutils-gdb] Remove field_info::nfields member gdb-buildbot
@ 2020-03-12 7:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-12 7:15 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/2110
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
317f712722993375935ff8f992410435fb8e2b27
Subject of commit:
Remove field_info::nfields member
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/31/317f712722993375935ff8f992410435fb8e2b27/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================
*** 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/31/317f712722993375935ff8f992410435fb8e2b27//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/31/317f712722993375935ff8f992410435fb8e2b27//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-10 23:52 [binutils-gdb] .idata symbols should be reported with i or I flag by nm gdb-buildbot
@ 2020-03-12 0:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-12 0: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/2108
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
49d9fd42acefc1c0ee282b5808874a1074bf1ecd
Subject of commit:
.idata symbols should be reported with i or I flag by nm
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/49/49d9fd42acefc1c0ee282b5808874a1074bf1ecd/
*** 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/49/49d9fd42acefc1c0ee282b5808874a1074bf1ecd//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/49/49d9fd42acefc1c0ee282b5808874a1074bf1ecd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-10 21:30 [binutils-gdb] gdb: Use std::abs instead of abs on LONGEST types gdb-buildbot
@ 2020-03-11 21:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-11 21:58 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/2106
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
3104d9ee223133b9f5be4ec96b3f986e4fbc893e
Subject of commit:
gdb: Use std::abs instead of abs on LONGEST types
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/31/3104d9ee223133b9f5be4ec96b3f986e4fbc893e/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/31/3104d9ee223133b9f5be4ec96b3f986e4fbc893e//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/31/3104d9ee223133b9f5be4ec96b3f986e4fbc893e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-10 17:14 [binutils-gdb] [gdb/testsuite] Fix spawn in tuiterm.exp gdb-buildbot
@ 2020-03-11 17:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-11 17:19 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/2104
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
c8d4f6dfd9264d6ab5d14c2dde3628cc1e7dd75f
Subject of commit:
[gdb/testsuite] Fix spawn in tuiterm.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c8/c8d4f6dfd9264d6ab5d14c2dde3628cc1e7dd75f/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c8/c8d4f6dfd9264d6ab5d14c2dde3628cc1e7dd75f//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/c8/c8d4f6dfd9264d6ab5d14c2dde3628cc1e7dd75f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-10 13:06 [binutils-gdb] bfd_stat_arch_elt buffer overflow gdb-buildbot
@ 2020-03-11 12:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-11 12:38 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/2102
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
ff69a8949bb65c9eb64ea03ee1492902c2620c8c
Subject of commit:
bfd_stat_arch_elt buffer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ff/ff69a8949bb65c9eb64ea03ee1492902c2620c8c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
==============================================
*** 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/ff/ff69a8949bb65c9eb64ea03ee1492902c2620c8c//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/ff/ff69a8949bb65c9eb64ea03ee1492902c2620c8c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-10 9:35 [binutils-gdb] Specialize partial_symtab for DWARF include files gdb-buildbot
@ 2020-03-11 8:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-11 8:28 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/2101
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
b83470bfa7ca200b1c99caac5f6d56bffe0261d0
Subject of commit:
Specialize partial_symtab for DWARF include files
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b8/b83470bfa7ca200b1c99caac5f6d56bffe0261d0/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/b8/b83470bfa7ca200b1c99caac5f6d56bffe0261d0//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/b8/b83470bfa7ca200b1c99caac5f6d56bffe0261d0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-10 9:09 [binutils-gdb] Remove casts from dwarf2/index-write.c gdb-buildbot
@ 2020-03-11 8:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-11 8:11 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/2100
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
edfe0a0c6561cf838f3f885c22940025a826d900
Subject of commit:
Remove casts from dwarf2/index-write.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ed/edfe0a0c6561cf838f3f885c22940025a826d900/
*** Diff to previous build ***
==============================================
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
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/ed/edfe0a0c6561cf838f3f885c22940025a826d900//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/ed/edfe0a0c6561cf838f3f885c22940025a826d900//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-10 7:05 [binutils-gdb] Add debuginfod support to GDB gdb-buildbot
@ 2020-03-11 5:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-11 5:37 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/2099
Author:
Aaron Merey <amerey@redhat.com>
Commit tested:
0d79cdc494d5eb9db26a602d62c92d49f83f407e
Subject of commit:
Add debuginfod support to GDB
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0d/0d79cdc494d5eb9db26a602d62c92d49f83f407e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
PASS -> UNRESOLVED: gdb.dwarf2/dw2-compdir-oldgcc.exp: info source gcc43
PASS -> UNRESOLVED: gdb.dwarf2/dw2-compdir-oldgcc.exp: list gcc43
PASS -> UNRESOLVED: gdb.dwarf2/dw2-ranges-base.exp: count END markers in line table
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/0d/0d79cdc494d5eb9db26a602d62c92d49f83f407e//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/0d/0d79cdc494d5eb9db26a602d62c92d49f83f407e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-10 5:36 [binutils-gdb] gdb: print thread names in thread apply command output gdb-buildbot
@ 2020-03-11 3:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-11 3:17 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/2098
Author:
Jérémie Galarneau <jeremie.galarneau@efficios.com>
Commit tested:
b65ce565416b950d8730b34106c54779c48efd29
Subject of commit:
gdb: print thread names in thread apply command output
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b6/b65ce565416b950d8730b34106c54779c48efd29/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/b6/b65ce565416b950d8730b34106c54779c48efd29//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/b6/b65ce565416b950d8730b34106c54779c48efd29//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-10 3:17 [binutils-gdb] Move more declarations from dwarf2/loc.h to dwarf2/read.h gdb-buildbot
@ 2020-03-11 0:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-11 0:57 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/2097
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
d4c9a4f87ddbbb79d852f59ee1723e03294540c2
Subject of commit:
Move more declarations from dwarf2/loc.h to dwarf2/read.h
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d4/d4c9a4f87ddbbb79d852f59ee1723e03294540c2/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
==============================================
*** 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/d4/d4c9a4f87ddbbb79d852f59ee1723e03294540c2//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/d4/d4c9a4f87ddbbb79d852f59ee1723e03294540c2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-09 23:11 [binutils-gdb] Archive sanity checks gdb-buildbot
@ 2020-03-10 20:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-10 20:18 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/2095
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
02f7e7eed956b99ab2e80f8974fbe59e1d9b0dff
Subject of commit:
Archive sanity checks
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/02/02f7e7eed956b99ab2e80f8974fbe59e1d9b0dff/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/02/02f7e7eed956b99ab2e80f8974fbe59e1d9b0dff//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/02/02f7e7eed956b99ab2e80f8974fbe59e1d9b0dff//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-09 21:24 [binutils-gdb] Re: vms buffer overflows and large memory allocation gdb-buildbot
@ 2020-03-10 17:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-10 17:58 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/2094
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
cc4c4f40a2b46e355684e450f59154cece591c39
Subject of commit:
Re: vms buffer overflows and large memory allocation
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/cc/cc4c4f40a2b46e355684e450f59154cece591c39/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: can't run to main
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
PASS -> UNRESOLVED: gdb.trace/actions.exp: change to ctf target
==============================================
*** 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/cc/cc4c4f40a2b46e355684e450f59154cece591c39//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/cc/cc4c4f40a2b46e355684e450f59154cece591c39//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-09 19:31 [binutils-gdb] Move dwarf2_read_addr_index declaration to dwarf2/read.h gdb-buildbot
@ 2020-03-10 15:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-10 15:37 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/2093
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
450a1bfc7f60d4b37615a7d78aac83ca73cae159
Subject of commit:
Move dwarf2_read_addr_index declaration to dwarf2/read.h
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/45/450a1bfc7f60d4b37615a7d78aac83ca73cae159/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/45/450a1bfc7f60d4b37615a7d78aac83ca73cae159//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/45/450a1bfc7f60d4b37615a7d78aac83ca73cae159//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-09 17:32 [binutils-gdb] rx: memory allocation without checking for NULL return gdb-buildbot
@ 2020-03-10 13:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-10 13:17 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/2092
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
e0b317de31ab0e99ef8d14e9f751ae7e7d16abde
Subject of commit:
rx: memory allocation without checking for NULL return
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e0/e0b317de31ab0e99ef8d14e9f751ae7e7d16abde/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================
*** 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/e0/e0b317de31ab0e99ef8d14e9f751ae7e7d16abde//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/e0/e0b317de31ab0e99ef8d14e9f751ae7e7d16abde//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-09 13:09 [binutils-gdb] PR25593, --as-needed breaks DT_NEEDED order with linker plugin gdb-buildbot
@ 2020-03-10 8:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-10 8:37 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/2090
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
e310298cf3fc02112ac0018260748828affa4061
Subject of commit:
PR25593, --as-needed breaks DT_NEEDED order with linker plugin
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e3/e310298cf3fc02112ac0018260748828affa4061/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e3/e310298cf3fc02112ac0018260748828affa4061//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/e3/e310298cf3fc02112ac0018260748828affa4061//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-09 8:56 [binutils-gdb] Merge upstream GCC changes for include/ and libiberty/ directories gdb-buildbot
@ 2020-03-10 3:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-10 3:58 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/2088
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
99e47410143dc8a5f699e73e56dd4c64ecc1c2e9
Subject of commit:
Merge upstream GCC changes for include/ and libiberty/ directories
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/99/99e47410143dc8a5f699e73e56dd4c64ecc1c2e9/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/99/99e47410143dc8a5f699e73e56dd4c64ecc1c2e9//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/99/99e47410143dc8a5f699e73e56dd4c64ecc1c2e9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-09 7:07 [binutils-gdb] gdb/fortran: Support negative array stride in one limited case gdb-buildbot
@ 2020-03-10 1:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-10 1:39 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/2087
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
9e80cfa14ed0bdec20361ae78e74ccb937de3428
Subject of commit:
gdb/fortran: Support negative array stride in one limited case
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9e/9e80cfa14ed0bdec20361ae78e74ccb937de3428/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: 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-extended-gdbserver-m64/9e/9e80cfa14ed0bdec20361ae78e74ccb937de3428//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/9e/9e80cfa14ed0bdec20361ae78e74ccb937de3428//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-09 3:14 [binutils-gdb] gdb/testsuite: Remove source file path from test name gdb-buildbot
@ 2020-03-09 20:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-09 20:58 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/2085
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
2078dbb210c7abc2c7ffee7aeefa1cc0ae375da0
Subject of commit:
gdb/testsuite: Remove source file path from test name
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/20/2078dbb210c7abc2c7ffee7aeefa1cc0ae375da0/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/20/2078dbb210c7abc2c7ffee7aeefa1cc0ae375da0//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/20/2078dbb210c7abc2c7ffee7aeefa1cc0ae375da0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-09 1:53 [binutils-gdb] Don't call lto-wrapper for ar and ranlib gdb-buildbot
@ 2020-03-09 18:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-09 18:38 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/2084
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
ecda90163e2b0a6f0be96e3fc262c28820a27211
Subject of commit:
Don't call lto-wrapper for ar and ranlib
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ec/ecda90163e2b0a6f0be96e3fc262c28820a27211/
*** 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/ec/ecda90163e2b0a6f0be96e3fc262c28820a27211//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/ec/ecda90163e2b0a6f0be96e3fc262c28820a27211//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-09 0:27 [binutils-gdb] [ARC][committed] Update int_vector_base aux register gdb-buildbot
@ 2020-03-09 16:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-09 16:18 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/2083
Author:
Claudiu Zissulescu <claziss@gmail.com>
Commit tested:
265b467340e5334a682e47a0e1b69a80c4428349
Subject of commit:
[ARC][committed] Update int_vector_base aux register.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/26/265b467340e5334a682e47a0e1b69a80c4428349/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals collectively: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals collectively: start trace experiment
new FAIL: gdb.trace/collection.exp: collect register locals collectively: tfind test frame
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member char
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member double
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member float
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected local member int
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #0
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #1
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #2
new FAIL: gdb.trace/collection.exp: collect register locals individually: collected locarray #3
new FAIL: gdb.trace/collection.exp: collect register locals individually: define actions
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: trace installed_in_trace: tfind test frame 0
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: ctf: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: global reference shows address but not value
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_partial
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
new FAIL: gdb.trace/unavailable.exp: collect globals: tfile: referenced integer was not collected
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: tfile: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable registers: ctf: info registers, multiple registers not available
new FAIL: gdb.trace/unavailable.exp: unavailable registers: info registers, multiple registers not available
new FAIL: gdb.trace/unavailable.exp: unavailable registers: tfile: info registers, multiple registers not available
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
==============================================
*** 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/26/265b467340e5334a682e47a0e1b69a80c4428349//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/26/265b467340e5334a682e47a0e1b69a80c4428349//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-08 21:54 [binutils-gdb] [gdb/testsuite] Remove gcc/93866 xfail in methods.exp gdb-buildbot
@ 2020-03-09 13:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-09 13:59 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/2082
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
70d497007d097a68cbd5e78104619f4f88a09838
Subject of commit:
[gdb/testsuite] Remove gcc/93866 xfail in methods.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/70/70d497007d097a68cbd5e78104619f4f88a09838/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: can't run to main
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/70/70d497007d097a68cbd5e78104619f4f88a09838//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/70/70d497007d097a68cbd5e78104619f4f88a09838//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-08 20:07 [binutils-gdb] Move dwarf2_get_die_type declaration to dwarf2/read.h gdb-buildbot
@ 2020-03-09 11:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-09 11:40 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/2081
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
8cb5117ccfa578e6c531fcad4851be0f13b53f3b
Subject of commit:
Move dwarf2_get_die_type declaration to dwarf2/read.h
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8c/8cb5117ccfa578e6c531fcad4851be0f13b53f3b/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================
*** 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/8c/8cb5117ccfa578e6c531fcad4851be0f13b53f3b//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/8c/8cb5117ccfa578e6c531fcad4851be0f13b53f3b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-08 16:48 [binutils-gdb] Fix a memory leak and remove an unused member gdb-buildbot
@ 2020-03-09 7:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-09 7: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/2079
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
4ac9383206032dd0357602136af1e05e7701142b
Subject of commit:
Fix a memory leak and remove an unused member
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4a/4ac9383206032dd0357602136af1e05e7701142b/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/4a/4ac9383206032dd0357602136af1e05e7701142b//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/4a/4ac9383206032dd0357602136af1e05e7701142b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-08 12:39 [binutils-gdb] Simplify setting of reading_partial_symbols gdb-buildbot
@ 2020-03-09 2:21 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-09 2:21 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/2077
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
7693576838f4fe66b2a2380425b5ad950c671b34
Subject of commit:
Simplify setting of reading_partial_symbols
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/76/7693576838f4fe66b2a2380425b5ad950c671b34/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/76/7693576838f4fe66b2a2380425b5ad950c671b34//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/76/7693576838f4fe66b2a2380425b5ad950c671b34//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-08 10:45 [binutils-gdb] [gdb] Ensure listing of unused static var in info locals gdb-buildbot
@ 2020-03-09 0:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-09 0: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/2076
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
a88ef40d0f21342bb5ce01ce677846995ca0d133
Subject of commit:
[gdb] Ensure listing of unused static var in info locals
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a88ef40d0f21342bb5ce01ce677846995ca0d133/
*** 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/a8/a88ef40d0f21342bb5ce01ce677846995ca0d133//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/a8/a88ef40d0f21342bb5ce01ce677846995ca0d133//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-08 8:47 [binutils-gdb] [gdb/testsuite] Fix layout next/prev/regs help message gdb-buildbot
@ 2020-03-08 21:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-08 21:42 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/2075
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
c9af65210c36aa0b5362b8ce2814ca8a5b09af92
Subject of commit:
[gdb/testsuite] Fix layout next/prev/regs help message
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c9/c9af65210c36aa0b5362b8ce2814ca8a5b09af92/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c9/c9af65210c36aa0b5362b8ce2814ca8a5b09af92//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/c9/c9af65210c36aa0b5362b8ce2814ca8a5b09af92//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-08 3:04 [binutils-gdb] gdb: update gnulib import gdb-buildbot
@ 2020-03-08 14:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-08 14:42 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/2072
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
5df4cba632201687fd8472663138fbeffaa8f315
Subject of commit:
gdb: update gnulib import
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5d/5df4cba632201687fd8472663138fbeffaa8f315/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: check_pc_after_cross_syscall: single step over fork final pc
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/5d/5df4cba632201687fd8472663138fbeffaa8f315//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/5d/5df4cba632201687fd8472663138fbeffaa8f315//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-08 1:16 [binutils-gdb] Make dwarf2_compile_expr_to_ax static gdb-buildbot
@ 2020-03-08 12:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-08 12:23 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/2071
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
5707a07af2c282e87af1b060b4463fc083775649
Subject of commit:
Make dwarf2_compile_expr_to_ax static
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/57/5707a07af2c282e87af1b060b4463fc083775649/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/57/5707a07af2c282e87af1b060b4463fc083775649//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/57/5707a07af2c282e87af1b060b4463fc083775649//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-07 23:21 [binutils-gdb] Fix cast in TUI_DISASM_WIN gdb-buildbot
@ 2020-03-08 10:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-08 10:03 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/2070
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
3b0fb49e305511c0f68d588bb8cf1a250ecd76f9
Subject of commit:
Fix cast in TUI_DISASM_WIN
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3b/3b0fb49e305511c0f68d588bb8cf1a250ecd76f9/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================
*** 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/3b/3b0fb49e305511c0f68d588bb8cf1a250ecd76f9//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/3b/3b0fb49e305511c0f68d588bb8cf1a250ecd76f9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-07 21:10 [binutils-gdb] Add "usage" text to all TUI command help gdb-buildbot
@ 2020-03-08 7:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-08 7:44 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/2069
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
283be8bfa4c19c60f81abbbb43e41b6ccfdff4a9
Subject of commit:
Add "usage" text to all TUI command help
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/28/283be8bfa4c19c60f81abbbb43e41b6ccfdff4a9/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/28/283be8bfa4c19c60f81abbbb43e41b6ccfdff4a9//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/28/283be8bfa4c19c60f81abbbb43e41b6ccfdff4a9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-07 17:37 [binutils-gdb] Make some tui_source_window_base members "protected" gdb-buildbot
@ 2020-03-08 3:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-08 3:04 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/2067
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
432b5c40220d80d539284f0ee8f6d081d39f0578
Subject of commit:
Make some tui_source_window_base members "protected"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/43/432b5c40220d80d539284f0ee8f6d081d39f0578/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/43/432b5c40220d80d539284f0ee8f6d081d39f0578//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/43/432b5c40220d80d539284f0ee8f6d081d39f0578//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-07 15:39 [binutils-gdb] Allow TUI windows in Python gdb-buildbot
@ 2020-03-08 0:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-08 0:44 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/2066
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
01b1af321f804ef6dfd40d3054c8757f31096ea8
Subject of commit:
Allow TUI windows in Python
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/01/01b1af321f804ef6dfd40d3054c8757f31096ea8/
*** Diff to previous build ***
==============================================
new FAIL: gdb.python/tui-window.exp: Window was updated
==============================================
*** 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/01/01b1af321f804ef6dfd40d3054c8757f31096ea8//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/01/01b1af321f804ef6dfd40d3054c8757f31096ea8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-07 12:15 [binutils-gdb] TUI windows do not need to store their type gdb-buildbot
@ 2020-03-07 21:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-07 21:53 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/2062
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
fdb01f0ce44653180af9d3d4f264c0ddb2d1261d
Subject of commit:
TUI windows do not need to store their type
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fd/fdb01f0ce44653180af9d3d4f264c0ddb2d1261d/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/fd/fdb01f0ce44653180af9d3d4f264c0ddb2d1261d//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/fd/fdb01f0ce44653180af9d3d4f264c0ddb2d1261d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
[not found] <e098d18cfc12c750616b7c934b9a9057f71f3553@gdb-build>
@ 2020-03-07 17:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-07 17:13 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/2060
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
e098d18cfc12c750616b7c934b9a9057f71f3553
Subject of commit:
Handle ambiguity in tui_partial_win_by_name
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e0/e098d18cfc12c750616b7c934b9a9057f71f3553/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e0/e098d18cfc12c750616b7c934b9a9057f71f3553//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/e0/e098d18cfc12c750616b7c934b9a9057f71f3553//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
[not found] <eb9c88745686d46c5100bdf1c2f112d699c7f702@gdb-build>
@ 2020-03-07 14:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-07 14:53 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/2059
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
eb9c88745686d46c5100bdf1c2f112d699c7f702
Subject of commit:
Reimplement tui_next_win and tui_prev_win
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/eb/eb9c88745686d46c5100bdf1c2f112d699c7f702/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/eb/eb9c88745686d46c5100bdf1c2f112d699c7f702//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/eb/eb9c88745686d46c5100bdf1c2f112d699c7f702//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
[not found] <7c043ba695a3cee067554b1e871e60f7934512b4@gdb-build>
@ 2020-03-07 10:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-07 10:13 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/2057
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
7c043ba695a3cee067554b1e871e60f7934512b4
Subject of commit:
Add horizontal splitting to TUI layout
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7c/7c043ba695a3cee067554b1e871e60f7934512b4/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: ctf: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_asm_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_c_test
new FAIL: gdb.trace/actions.exp: tfile: tracepoint on gdb_recursion_test 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 trace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 trace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
new FAIL: gdb.trace/signal.exp: tracepoint 4 hit 3 times
new FAIL: gdb.trace/signal.exp: tracepoint 5 hit 3 times
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: asm-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: asm: 80x24: box 1
new FAIL: gdb.tui/empty.exp: asm: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: split: 80x24: box 1
new FAIL: gdb.tui/empty.exp: split: 80x24: box 2
new FAIL: gdb.tui/empty.exp: split: 90x40: box 1
new FAIL: gdb.tui/empty.exp: split: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 1
new FAIL: gdb.tui/empty.exp: src-regs: 90x40: box 2
new FAIL: gdb.tui/empty.exp: src: 90x40: box 1
new FAIL: gdb.tui/resize.exp: source box after resize
new UNRESOLVED: gdb.tui/tui-layout-asm-short-prog.exp: check asm box contents again
new UNRESOLVED: gdb.tui/tui-layout-asm-short-prog.exp: check first line is back
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/7c/7c043ba695a3cee067554b1e871e60f7934512b4//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/7c/7c043ba695a3cee067554b1e871e60f7934512b4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-06 15:05 [binutils-gdb] Reimplement "tui reg" command gdb-buildbot
@ 2020-03-06 20:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-06 20:43 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/2051
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
0dbc2fc759fc8b5eaa69d7b3b7d0c4cf4afb19be
Subject of commit:
Reimplement "tui reg" command
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0d/0dbc2fc759fc8b5eaa69d7b3b7d0c4cf4afb19be/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/0d/0dbc2fc759fc8b5eaa69d7b3b7d0c4cf4afb19be//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/0d/0dbc2fc759fc8b5eaa69d7b3b7d0c4cf4afb19be//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-06 12:45 [binutils-gdb] Reimplement TUI "C-x 1" binding gdb-buildbot
@ 2020-03-06 18:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-06 18:02 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/2050
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
5afe342e2a61dcc49e42e68a86432e7f240af51d
Subject of commit:
Reimplement TUI "C-x 1" binding
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5a/5afe342e2a61dcc49e42e68a86432e7f240af51d/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/5a/5afe342e2a61dcc49e42e68a86432e7f240af51d//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/5a/5afe342e2a61dcc49e42e68a86432e7f240af51d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-06 10:32 [binutils-gdb] Simplify TUI C-x 2 binding gdb-buildbot
@ 2020-03-06 16:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-06 16:15 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/2049
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
427326a826888b39a38c9f1b497aa981f37b72af
Subject of commit:
Simplify TUI C-x 2 binding
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/42/427326a826888b39a38c9f1b497aa981f37b72af/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================
*** 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/42/427326a826888b39a38c9f1b497aa981f37b72af//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/42/427326a826888b39a38c9f1b497aa981f37b72af//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-06 6:39 [binutils-gdb] Simplify tui_add_win_to_layout gdb-buildbot
@ 2020-03-06 11:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-06 11:52 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/2047
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
59b8b5d2477440a21b580dbf59281a9e2795e1dc
Subject of commit:
Simplify tui_add_win_to_layout
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/59/59b8b5d2477440a21b580dbf59281a9e2795e1dc/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================
*** 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/59/59b8b5d2477440a21b580dbf59281a9e2795e1dc//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/59/59b8b5d2477440a21b580dbf59281a9e2795e1dc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ 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
@ 2020-03-06 9:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ 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] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-05 13:39 [binutils-gdb] Add a mostlyclean target to gdbserver gdb-buildbot
@ 2020-03-05 14:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-05 14:05 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/2041
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
dda42c0b7baba24d182a408574650ff162f44ec3
Subject of commit:
Add a mostlyclean target to gdbserver
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/dd/dda42c0b7baba24d182a408574650ff162f44ec3/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/dd/dda42c0b7baba24d182a408574650ff162f44ec3//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/dd/dda42c0b7baba24d182a408574650ff162f44ec3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-05 8:30 [binutils-gdb] [gdb/testsuite] Fix gdb.go/methods.exp gdb-buildbot
@ 2020-03-05 8:33 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-05 8:33 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/2039
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
755251522afd2f33de7e64f8a30ddd732f30b2de
Subject of commit:
[gdb/testsuite] Fix gdb.go/methods.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/75/755251522afd2f33de7e64f8a30ddd732f30b2de/
*** 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/75/755251522afd2f33de7e64f8a30ddd732f30b2de//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/75/755251522afd2f33de7e64f8a30ddd732f30b2de//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-05 6:26 [binutils-gdb] Fix two more mips-tdep.h declarations gdb-buildbot
@ 2020-03-05 6:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-05 6:29 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/2038
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
e94e944bf2834d9bceafa1e1e4246bfa87b89677
Subject of commit:
Fix two more mips-tdep.h declarations
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e9/e94e944bf2834d9bceafa1e1e4246bfa87b89677/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e9/e94e944bf2834d9bceafa1e1e4246bfa87b89677//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/e9/e94e944bf2834d9bceafa1e1e4246bfa87b89677//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-04 19:29 [binutils-gdb] gdb/testsuite: Regenerate the testglue if it is not in gdb-buildbot
@ 2020-03-04 19:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-04 19:12 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/2033
Author:
Shahab Vahedi <shahab@synopsys.com>
Commit tested:
24ac169ac5a918cd82b7485935f0c40a094c625e
Subject of commit:
gdb/testsuite: Regenerate the testglue if it is not in
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/24/24ac169ac5a918cd82b7485935f0c40a094c625e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/24/24ac169ac5a918cd82b7485935f0c40a094c625e//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/24/24ac169ac5a918cd82b7485935f0c40a094c625e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-04 14:10 [binutils-gdb] RISC-V: Support the ISA-dependent CSR checking gdb-buildbot
@ 2020-03-04 14:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-04 14:10 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/2031
Author:
Nelson Chu <nelson.chu@sifive.com>
Commit tested:
bd0cf5a6bae180f65f3b9298619d1bd695abcdd8
Subject of commit:
RISC-V: Support the ISA-dependent CSR checking.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bd/bd0cf5a6bae180f65f3b9298619d1bd695abcdd8/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/bd/bd0cf5a6bae180f65f3b9298619d1bd695abcdd8//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/bd/bd0cf5a6bae180f65f3b9298619d1bd695abcdd8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-04 12:20 [binutils-gdb] PR25569, PDP11 ld -s clobbers last data byte gdb-buildbot
@ 2020-03-04 12:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-04 12:05 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/2030
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
dda2980f54a0c9437de047f3020f520dd1e0de6a
Subject of commit:
PR25569, PDP11 ld -s clobbers last data byte
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/dd/dda2980f54a0c9437de047f3020f520dd1e0de6a/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================
*** 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/dd/dda2980f54a0c9437de047f3020f520dd1e0de6a//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/dd/dda2980f54a0c9437de047f3020f520dd1e0de6a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-04 7:35 [binutils-gdb] [gdb/testsuite] Fix hello.go xpass gdb-buildbot
@ 2020-03-04 7:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-04 7:05 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/2028
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
a9c798035de33ccc3bc3e494449bbe931e900372
Subject of commit:
[gdb/testsuite] Fix hello.go xpass
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a9/a9c798035de33ccc3bc3e494449bbe931e900372/
*** 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/a9/a9c798035de33ccc3bc3e494449bbe931e900372//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/a9/a9c798035de33ccc3bc3e494449bbe931e900372//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-04 4:47 [binutils-gdb] gdbserver: finish turning the target ops vector into a class gdb-buildbot
@ 2020-03-04 4:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-04 4:47 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/2027
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
52405d85ec748e4566b7893fa3cb9ff21c8a1bc4
Subject of commit:
gdbserver: finish turning the target ops vector into a class
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/52/52405d85ec748e4566b7893fa3cb9ff21c8a1bc4/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/52/52405d85ec748e4566b7893fa3cb9ff21c8a1bc4//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/52/52405d85ec748e4566b7893fa3cb9ff21c8a1bc4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-03 17:14 [binutils-gdb] gdbserver: turn target ops 'thread_name' and 'thread_handle' into methods gdb-buildbot
@ 2020-03-03 16:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-03 16:44 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/2022
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
7f63b89b3a4229c2274f613111a907623853351f
Subject of commit:
gdbserver: turn target ops 'thread_name' and 'thread_handle' into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7f/7f63b89b3a4229c2274f613111a907623853351f/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/7f/7f63b89b3a4229c2274f613111a907623853351f//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/7f/7f63b89b3a4229c2274f613111a907623853351f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-03 10:31 [binutils-gdb] gdbserver: turn target op 'pid_to_exec_file' into a method gdb-buildbot
@ 2020-03-03 10:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-03 10:23 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/2019
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
8247b8236bc5528993d9b2938bc0544a5acea21d
Subject of commit:
gdbserver: turn target op 'pid_to_exec_file' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/82/8247b8236bc5528993d9b2938bc0544a5acea21d/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups with filter
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/82/8247b8236bc5528993d9b2938bc0544a5acea21d//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/82/8247b8236bc5528993d9b2938bc0544a5acea21d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-03 5:38 [binutils-gdb] gdbserver: turn btrace-related target ops into methods gdb-buildbot
@ 2020-03-03 5:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-03 5:26 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/2017
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
79597bdd56f380555ed7075b39a9280a17bd7e90
Subject of commit:
gdbserver: turn btrace-related target ops into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/79/79597bdd56f380555ed7075b39a9280a17bd7e90/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/79/79597bdd56f380555ed7075b39a9280a17bd7e90//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/79/79597bdd56f380555ed7075b39a9280a17bd7e90//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-03 3:18 [binutils-gdb] gdbserver: turn target op 'supports_agent' into a method gdb-buildbot
@ 2020-03-03 3:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-03 3:10 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/2016
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
c0245cb999ec9692db1947240e865988a0c19c82
Subject of commit:
gdbserver: turn target op 'supports_agent' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c0/c0245cb999ec9692db1947240e865988a0c19c82/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/c0/c0245cb999ec9692db1947240e865988a0c19c82//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/c0/c0245cb999ec9692db1947240e865988a0c19c82//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-03 0:51 [binutils-gdb] gdbserver: turn target op 'qxfer_libraries_svr4' into a method gdb-buildbot
@ 2020-03-03 0:51 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-03 0:51 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/2015
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
974387bb254e7317e29205e51623ab4243f98d0c
Subject of commit:
gdbserver: turn target op 'qxfer_libraries_svr4' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/97/974387bb254e7317e29205e51623ab4243f98d0c/
*** 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/97/974387bb254e7317e29205e51623ab4243f98d0c//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/97/974387bb254e7317e29205e51623ab4243f98d0c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-02 22:23 [binutils-gdb] gdbserver: turn target op 'supports_disable_randomization' into a method gdb-buildbot
@ 2020-03-02 22:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-02 22:38 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/2014
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
c756403b171fc56562bf478c8602040bba3de856
Subject of commit:
gdbserver: turn target op 'supports_disable_randomization' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c7/c756403b171fc56562bf478c8602040bba3de856/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================
*** 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/c7/c756403b171fc56562bf478c8602040bba3de856//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/c7/c756403b171fc56562bf478c8602040bba3de856//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-02 20:50 [binutils-gdb] gdbserver: turn target op 'emit_ops' into a method gdb-buildbot
@ 2020-03-02 20:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-02 20:41 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/2013
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
345dafadc282bad205190f7174840a834d72ec71
Subject of commit:
gdbserver: turn target op 'emit_ops' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/34/345dafadc282bad205190f7174840a834d72ec71/
*** 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/34/345dafadc282bad205190f7174840a834d72ec71//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/34/345dafadc282bad205190f7174840a834d72ec71//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-02 15:32 [binutils-gdb] gdbserver: turn target op 'stabilize_threads' into a method gdb-buildbot
@ 2020-03-02 15:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-02 15:28 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/2011
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
5c9eb2f2b53cb095dc6dbdd0654cec4ff9a53650
Subject of commit:
gdbserver: turn target op 'stabilize_threads' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5c/5c9eb2f2b53cb095dc6dbdd0654cec4ff9a53650/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/5c/5c9eb2f2b53cb095dc6dbdd0654cec4ff9a53650//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/5c/5c9eb2f2b53cb095dc6dbdd0654cec4ff9a53650//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-02 8:30 [binutils-gdb] gdbserver: turn target op 'thread_stopped' into a method gdb-buildbot
@ 2020-03-02 8:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-02 8:24 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/2008
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
68119632a065f7d2a1bdd4c9524484c741544f24
Subject of commit:
gdbserver: turn target op 'thread_stopped' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/68/68119632a065f7d2a1bdd4c9524484c741544f24/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/68/68119632a065f7d2a1bdd4c9524484c741544f24//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/68/68119632a065f7d2a1bdd4c9524484c741544f24//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-02 6:10 [binutils-gdb] gdbserver: turn target ops 'read_pc' and 'write_pc' into methods gdb-buildbot
@ 2020-03-02 6:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-02 6:17 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/2007
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
770d8f6a51200bb4bf1228eba928e24e5d7fff86
Subject of commit:
gdbserver: turn target ops 'read_pc' and 'write_pc' into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/77/770d8f6a51200bb4bf1228eba928e24e5d7fff86/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/77/770d8f6a51200bb4bf1228eba928e24e5d7fff86//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/770d8f6a51200bb4bf1228eba928e24e5d7fff86//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-02 4:20 [binutils-gdb] gdbserver: turn target op 'supports_tracepoints' into a method gdb-buildbot
@ 2020-03-02 4:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-02 4:12 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/2006
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
290732bfb3805dd31fa640d022481dbb5d436988
Subject of commit:
gdbserver: turn target op 'supports_tracepoints' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/29/290732bfb3805dd31fa640d022481dbb5d436988/
*** 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/29/290732bfb3805dd31fa640d022481dbb5d436988//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/29/290732bfb3805dd31fa640d022481dbb5d436988//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-01 20:56 [binutils-gdb] gdbserver: turn target op 'core_of_thread' into a method gdb-buildbot
@ 2020-03-01 20:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-01 20:53 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/2003
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
95a45fc165be890faac873b615b6bf449bcb1207
Subject of commit:
gdbserver: turn target op 'core_of_thread' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/95/95a45fc165be890faac873b615b6bf449bcb1207/
*** 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/95/95a45fc165be890faac873b615b6bf449bcb1207//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/95/95a45fc165be890faac873b615b6bf449bcb1207//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-01 18:53 [binutils-gdb] gdbserver: turn target op 'handle_monitor_command' into a method gdb-buildbot
@ 2020-03-01 18:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-01 18:37 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/2002
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
55cf302157892947a18d1ecd0cdc89a49119b46b
Subject of commit:
gdbserver: turn target op 'handle_monitor_command' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/55/55cf302157892947a18d1ecd0cdc89a49119b46b/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/55/55cf302157892947a18d1ecd0cdc89a49119b46b//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/55/55cf302157892947a18d1ecd0cdc89a49119b46b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-01 16:21 [binutils-gdb] gdbserver: turn target op 'handle_new_gdb_connection' into a method gdb-buildbot
@ 2020-03-01 16:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-01 16:16 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/2001
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
fb00dfcef00f12501e52d2259464ee85d81334c5
Subject of commit:
gdbserver: turn target op 'handle_new_gdb_connection' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fb/fb00dfcef00f12501e52d2259464ee85d81334c5/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================
*** 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/fb/fb00dfcef00f12501e52d2259464ee85d81334c5//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/fb/fb00dfcef00f12501e52d2259464ee85d81334c5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-01 13:59 [binutils-gdb] gdbserver: turn target ops 'supports_{fork,vfork,exec}_events' into methods gdb-buildbot
@ 2020-03-01 13:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-01 13:57 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/2000
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
9690a72ae54450aafaa55872ffcbf8b973660436
Subject of commit:
gdbserver: turn target ops 'supports_{fork,vfork,exec}_events' into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/96/9690a72ae54450aafaa55872ffcbf8b973660436/
*** 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/96/9690a72ae54450aafaa55872ffcbf8b973660436//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/96/9690a72ae54450aafaa55872ffcbf8b973660436//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-01 7:16 [binutils-gdb] gdbserver: turn target op 'qxfer_siginfo' into a method gdb-buildbot
@ 2020-03-01 6:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-01 6:55 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/1997
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
d7abedf7e7d18c8a32f63b0e44bee4a4f3b581ba
Subject of commit:
gdbserver: turn target op 'qxfer_siginfo' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d7/d7abedf7e7d18c8a32f63b0e44bee4a4f3b581ba/
*** 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/d7/d7abedf7e7d18c8a32f63b0e44bee4a4f3b581ba//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/d7/d7abedf7e7d18c8a32f63b0e44bee4a4f3b581ba//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-01 4:32 [binutils-gdb] gdbserver: turn target op 'qxfer_osdata' into a method gdb-buildbot
@ 2020-03-01 4:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-01 4:28 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/1996
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
2d0795ee38d46bc820333ba1f0e9a836029d0151
Subject of commit:
gdbserver: turn target op 'qxfer_osdata' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2d/2d0795ee38d46bc820333ba1f0e9a836029d0151/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: 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-extended-gdbserver-m64/2d/2d0795ee38d46bc820333ba1f0e9a836029d0151//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/2d/2d0795ee38d46bc820333ba1f0e9a836029d0151//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-03-01 2:58 [binutils-gdb] gdbserver: turn target op 'hostio_last_error' into a method gdb-buildbot
@ 2020-03-01 2:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-03-01 2:43 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/1995
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
ea06bbaaaa975331a42f2054551e78f588020462
Subject of commit:
gdbserver: turn target op 'hostio_last_error' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ea/ea06bbaaaa975331a42f2054551e78f588020462/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ea/ea06bbaaaa975331a42f2054551e78f588020462//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/ea/ea06bbaaaa975331a42f2054551e78f588020462//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-29 23:58 [binutils-gdb] gdbserver: turn target op 'get_tls_address' into a method gdb-buildbot
@ 2020-02-29 23:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-29 23:40 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/1994
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
6e3fd7e948d158a04c0af7130e6648ad75aaba66
Subject of commit:
gdbserver: turn target op 'get_tls_address' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6e/6e3fd7e948d158a04c0af7130e6648ad75aaba66/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================
*** 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/6e/6e3fd7e948d158a04c0af7130e6648ad75aaba66//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/6e/6e3fd7e948d158a04c0af7130e6648ad75aaba66//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-29 19:44 [binutils-gdb] gdbserver: turn target ops 'stopped_by_watchpoint' and 'stopped_data_address' into methods gdb-buildbot
@ 2020-02-29 19:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-29 19:02 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/1992
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
6eeb5c5531f0238d367a2f3f1520ae3e2401f7ea
Subject of commit:
gdbserver: turn target ops 'stopped_by_watchpoint' and 'stopped_data_address' into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6e/6eeb5c5531f0238d367a2f3f1520ae3e2401f7ea/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/6e/6eeb5c5531f0238d367a2f3f1520ae3e2401f7ea//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/6e/6eeb5c5531f0238d367a2f3f1520ae3e2401f7ea//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-29 16:54 [binutils-gdb] gdbserver: turn target op 'supports_hardware_single_step' into a method gdb-buildbot
@ 2020-02-29 16:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-29 16:54 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/1991
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
22aa6223a0f6f7b8f5439166de2bbbb940ca9804
Subject of commit:
gdbserver: turn target op 'supports_hardware_single_step' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/22/22aa6223a0f6f7b8f5439166de2bbbb940ca9804/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/22/22aa6223a0f6f7b8f5439166de2bbbb940ca9804//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/22/22aa6223a0f6f7b8f5439166de2bbbb940ca9804//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-29 14:30 [binutils-gdb] gdbserver: turn target op '{supports_}stopped_by_hw_breakpoint' into a method gdb-buildbot
@ 2020-02-29 14:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-29 14:19 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/1990
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
93fe88b24c7e644e7b0947256bb32c2139d8afe5
Subject of commit:
gdbserver: turn target op '{supports_}stopped_by_hw_breakpoint' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/93/93fe88b24c7e644e7b0947256bb32c2139d8afe5/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/93/93fe88b24c7e644e7b0947256bb32c2139d8afe5//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/93/93fe88b24c7e644e7b0947256bb32c2139d8afe5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-29 10:25 [binutils-gdb] gdbserver: turn target ops 'insert_point' and 'remove_point' into methods gdb-buildbot
@ 2020-02-29 10:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-29 10:05 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/1988
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
7e0bde70ca4ea73461365e95d2fcaae8fb925ab4
Subject of commit:
gdbserver: turn target ops 'insert_point' and 'remove_point' into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7e/7e0bde70ca4ea73461365e95d2fcaae8fb925ab4/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/7e/7e0bde70ca4ea73461365e95d2fcaae8fb925ab4//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/7e/7e0bde70ca4ea73461365e95d2fcaae8fb925ab4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-29 8:01 [binutils-gdb] gdbserver: turn target op 'supports_z_point_type' into a method gdb-buildbot
@ 2020-02-29 7:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-29 7:39 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/1987
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
a2b2297a204898fa273a825d82385ce1b48941e3
Subject of commit:
gdbserver: turn target op 'supports_z_point_type' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a2/a2b2297a204898fa273a825d82385ce1b48941e3/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/a2/a2b2297a204898fa273a825d82385ce1b48941e3//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/a2/a2b2297a204898fa273a825d82385ce1b48941e3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-29 5:35 [binutils-gdb] gdbserver: turn target op 'read_auxv' into a method gdb-buildbot
@ 2020-02-29 5:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-29 5:15 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/1986
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
eac215cc618400bd4f808ce48fa51fd53c702adc
Subject of commit:
gdbserver: turn target op 'read_auxv' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ea/eac215cc618400bd4f808ce48fa51fd53c702adc/
*** 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/ea/eac215cc618400bd4f808ce48fa51fd53c702adc//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/ea/eac215cc618400bd4f808ce48fa51fd53c702adc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-29 1:09 [binutils-gdb] gdbserver: turn target op 'look_up_symbols' into a method gdb-buildbot
@ 2020-02-29 0:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-29 0:29 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/1984
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
2a31c7aa00fcb29e2f4191a9a25b164755986e04
Subject of commit:
gdbserver: turn target op 'look_up_symbols' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2a/2a31c7aa00fcb29e2f4191a9a25b164755986e04/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2a/2a31c7aa00fcb29e2f4191a9a25b164755986e04//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/2a31c7aa00fcb29e2f4191a9a25b164755986e04//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-28 22:39 [binutils-gdb] gdbserver: turn target ops 'read_memory' and 'write_memory' into methods gdb-buildbot
@ 2020-02-28 22:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-28 22:03 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/1983
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
e2558df32b83c2e3b41829d46c0b3d09732d7176
Subject of commit:
gdbserver: turn target ops 'read_memory' and 'write_memory' into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e2/e2558df32b83c2e3b41829d46c0b3d09732d7176/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/e2/e2558df32b83c2e3b41829d46c0b3d09732d7176//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/e2/e2558df32b83c2e3b41829d46c0b3d09732d7176//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-28 19:58 [binutils-gdb] gdbserver: turn prepare_to_access_memory & done_accessing_memory into methods gdb-buildbot
@ 2020-02-28 19:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-28 19:41 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/1982
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
79b4408780b27eeb60de7f3fe10bc654dddcf067
Subject of commit:
gdbserver: turn prepare_to_access_memory & done_accessing_memory into methods
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/79/79b4408780b27eeb60de7f3fe10bc654dddcf067/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
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-extended-gdbserver-m64/79/79b4408780b27eeb60de7f3fe10bc654dddcf067//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/79/79b4408780b27eeb60de7f3fe10bc654dddcf067//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-28 15:31 [binutils-gdb] gdbserver: turn target op 'wait' into a method gdb-buildbot
@ 2020-02-28 15:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-28 15:31 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/1980
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
6532e7e378adbe326256ce2410ce753ec30b5ef1
Subject of commit:
gdbserver: turn target op 'wait' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/65/6532e7e378adbe326256ce2410ce753ec30b5ef1/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/65/6532e7e378adbe326256ce2410ce753ec30b5ef1//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/65/6532e7e378adbe326256ce2410ce753ec30b5ef1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-28 13:18 [binutils-gdb] gdbserver: turn target op 'resume' into a method gdb-buildbot
@ 2020-02-28 13:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-28 13:08 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/1979
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
0e4d7e35fbd551e61cf72adae4806aa8c5230a1a
Subject of commit:
gdbserver: turn target op 'resume' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0e/0e4d7e35fbd551e61cf72adae4806aa8c5230a1a/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================
*** 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/0e/0e4d7e35fbd551e61cf72adae4806aa8c5230a1a//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/0e/0e4d7e35fbd551e61cf72adae4806aa8c5230a1a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-28 9:03 [binutils-gdb] gdbserver: turn target op 'join' into a method gdb-buildbot
@ 2020-02-28 8:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-28 8:59 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/1977
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
95a49a3939127a22c2c5e0401d97e00995593bc4
Subject of commit:
gdbserver: turn target op 'join' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/95/95a49a3939127a22c2c5e0401d97e00995593bc4/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/95/95a49a3939127a22c2c5e0401d97e00995593bc4//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/95/95a49a3939127a22c2c5e0401d97e00995593bc4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-28 6:09 [binutils-gdb] gdbserver: turn target op 'mourn' into a method gdb-buildbot
@ 2020-02-28 5:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-28 5:47 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/1976
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
8adb37b9c039168ed8805c5edffc34e12d84ff04
Subject of commit:
gdbserver: turn target op 'mourn' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8a/8adb37b9c039168ed8805c5edffc34e12d84ff04/
*** 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/8a/8adb37b9c039168ed8805c5edffc34e12d84ff04//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/8a/8adb37b9c039168ed8805c5edffc34e12d84ff04//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-27 23:07 [binutils-gdb] gdbserver: turn target op 'attach' into a method gdb-buildbot
@ 2020-02-27 23:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-27 23:08 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/1973
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
ef03dad808f48e8a6014ca7284e4d52a1e22f27c
Subject of commit:
gdbserver: turn target op 'attach' into a method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/ef03dad808f48e8a6014ca7284e4d52a1e22f27c/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/ef03dad808f48e8a6014ca7284e4d52a1e22f27c//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/ef/ef03dad808f48e8a6014ca7284e4d52a1e22f27c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-27 15:59 [binutils-gdb] gdbserver: start turning the target ops vector into a class gdb-buildbot
@ 2020-02-27 16:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-27 16:12 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/1970
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
5ef9273d29137dd81d7dff62821970e067baa82e
Subject of commit:
gdbserver: start turning the target ops vector into a class
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5e/5ef9273d29137dd81d7dff62821970e067baa82e/
*** 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/5e/5ef9273d29137dd81d7dff62821970e067baa82e//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/5e/5ef9273d29137dd81d7dff62821970e067baa82e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-27 13:47 [binutils-gdb] Stop the BFD library from automatically converting OS and PROC specific symbol section indicies to SHN_ABS, and provide a hook for backends to decide how such indicies should be processed gdb-buildbot
@ 2020-02-27 13:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-27 13:47 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/1969
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
00e49dff20421e0f8f28ee74cec12a0bae8f1b82
Subject of commit:
Stop the BFD library from automatically converting OS and PROC specific symbol section indicies to SHN_ABS, and provide a hook for backends to decide how such indicies should be processed.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/00/00e49dff20421e0f8f28ee74cec12a0bae8f1b82/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/00/00e49dff20421e0f8f28ee74cec12a0bae8f1b82//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/00/00e49dff20421e0f8f28ee74cec12a0bae8f1b82//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-27 8:46 [binutils-gdb] [gdb/testsuite] Handle missing gccgo gdb-buildbot
@ 2020-02-27 8:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-27 8:44 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/1967
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
d7445728b14851cb8535a6a9fa2995817dea2e60
Subject of commit:
[gdb/testsuite] Handle missing gccgo
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d7/d7445728b14851cb8535a6a9fa2995817dea2e60/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/d7/d7445728b14851cb8535a6a9fa2995817dea2e60//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/d7/d7445728b14851cb8535a6a9fa2995817dea2e60//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-27 6:30 [binutils-gdb] Regen with blessed automake-1.15.1 gdb-buildbot
@ 2020-02-27 6:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-27 6:43 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/1966
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
cb54886dcb525d85aca83e3d1fe9cfcf2aa0a5fb
Subject of commit:
Regen with blessed automake-1.15.1
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/cb/cb54886dcb525d85aca83e3d1fe9cfcf2aa0a5fb/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/cb/cb54886dcb525d85aca83e3d1fe9cfcf2aa0a5fb//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/cb/cb54886dcb525d85aca83e3d1fe9cfcf2aa0a5fb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-27 2:55 [binutils-gdb] RISC-V: Convert the ADD/ADDI to the compressed MV/LI if RS1 is zero gdb-buildbot
@ 2020-02-27 2:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-27 2:55 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/1964
Author:
Jim Wilson <jimw@sifive.com>
Commit tested:
fa16423949fc78b3d9c499eddefa91b99228fbc9
Subject of commit:
RISC-V: Convert the ADD/ADDI to the compressed MV/LI if RS1 is zero.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fa/fa16423949fc78b3d9c499eddefa91b99228fbc9/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================
*** 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/fa/fa16423949fc78b3d9c499eddefa91b99228fbc9//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/fa/fa16423949fc78b3d9c499eddefa91b99228fbc9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-27 0:16 [binutils-gdb] [gdb/testsuite] Fix xpass in gdb.python/lib-types.exp gdb-buildbot
@ 2020-02-27 0:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-27 0:13 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/1963
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
c9c41e6d73af4593b02471ca4d40ea00e453465a
Subject of commit:
[gdb/testsuite] Fix xpass in gdb.python/lib-types.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c9/c9c41e6d73af4593b02471ca4d40ea00e453465a/
*** 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/c9/c9c41e6d73af4593b02471ca4d40ea00e453465a//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/c9/c9c41e6d73af4593b02471ca4d40ea00e453465a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-26 21:36 [binutils-gdb] [gdb/testsuite] Fix funcall_ref.exp xpass gdb-buildbot
@ 2020-02-26 21:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-26 21:27 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/1962
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
f20ff8373775e236e63e45ca2d4683d5f69882a7
Subject of commit:
[gdb/testsuite] Fix funcall_ref.exp xpass
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f2/f20ff8373775e236e63e45ca2d4683d5f69882a7/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/f2/f20ff8373775e236e63e45ca2d4683d5f69882a7//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/f2/f20ff8373775e236e63e45ca2d4683d5f69882a7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-26 17:26 [binutils-gdb] rust/25535 Apply embedded offset to enum variant calculation gdb-buildbot
@ 2020-02-26 16:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-26 16:54 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/1960
Author:
Doug Evans <dje@google.com>
Commit tested:
084104828cba3e80b19a4bad9538d32991312d7a
Subject of commit:
rust/25535 Apply embedded offset to enum variant calculation
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/08/084104828cba3e80b19a4bad9538d32991312d7a/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/08/084104828cba3e80b19a4bad9538d32991312d7a//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/08/084104828cba3e80b19a4bad9538d32991312d7a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-26 14:37 [binutils-gdb] [gdb/testsuite] Fix corefile-buildid.exp with check-read1 gdb-buildbot
@ 2020-02-26 14:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-26 14:16 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/1959
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
623563f79db9c2d576303565f8ba1415c911c452
Subject of commit:
[gdb/testsuite] Fix corefile-buildid.exp with check-read1
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/62/623563f79db9c2d576303565f8ba1415c911c452/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/62/623563f79db9c2d576303565f8ba1415c911c452//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/62/623563f79db9c2d576303565f8ba1415c911c452//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-26 12:19 [binutils-gdb] Fix declaration of mips_pc_is_mips gdb-buildbot
@ 2020-02-26 11:49 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-26 11:49 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/1958
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
dfdeeca1cc6b785243a243d190872789417dda19
Subject of commit:
Fix declaration of mips_pc_is_mips
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/df/dfdeeca1cc6b785243a243d190872789417dda19/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/df/dfdeeca1cc6b785243a243d190872789417dda19//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/df/dfdeeca1cc6b785243a243d190872789417dda19//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-26 10:06 [binutils-gdb] Use obstack_strdup in ada-lang.c gdb-buildbot
@ 2020-02-26 9:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-26 9:22 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/1957
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
2ef5453be5e06566f60edcba7700503259c29b47
Subject of commit:
Use obstack_strdup in ada-lang.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2e/2ef5453be5e06566f60edcba7700503259c29b47/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/2e/2ef5453be5e06566f60edcba7700503259c29b47//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/2e/2ef5453be5e06566f60edcba7700503259c29b47//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-26 7:54 [binutils-gdb] Merge changes from GCC for the config/ directory gdb-buildbot
@ 2020-02-26 7:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-26 7:43 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/1956
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
9f1528a1bdb541510c56d48bbd77b50b617cb952
Subject of commit:
Merge changes from GCC for the config/ directory
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9f/9f1528a1bdb541510c56d48bbd77b50b617cb952/
*** 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/9f/9f1528a1bdb541510c56d48bbd77b50b617cb952//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/9f/9f1528a1bdb541510c56d48bbd77b50b617cb952//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-26 5:49 [binutils-gdb] Various fixes for the Z80 support gdb-buildbot
@ 2020-02-26 5:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-26 5:24 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/1955
Author:
Sergey Belyashov <sergey.belyashov@gmail.com>
Commit tested:
fcaaac0a0d3d46e3c59f87c1445852ac77b6c118
Subject of commit:
Various fixes for the Z80 support.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fc/fcaaac0a0d3d46e3c59f87c1445852ac77b6c118/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/fc/fcaaac0a0d3d46e3c59f87c1445852ac77b6c118//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/fc/fcaaac0a0d3d46e3c59f87c1445852ac77b6c118//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-26 1:04 [binutils-gdb] Remove useless NULL check in python.c gdb-buildbot
@ 2020-02-26 2:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-26 2:12 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/1954
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
d3c22fa82e2f9098ad5a0158a73f07db12426fff
Subject of commit:
Remove useless NULL check in python.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d3/d3c22fa82e2f9098ad5a0158a73f07db12426fff/
*** 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-extended-gdbserver-m64/d3/d3c22fa82e2f9098ad5a0158a73f07db12426fff//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/d3/d3c22fa82e2f9098ad5a0158a73f07db12426fff//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-25 22:32 [binutils-gdb] [gdb/testsuite] Fix c++/14186 kpass in cpexprs.exp gdb-buildbot
@ 2020-02-25 22:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-25 22:15 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/1952
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
d3308cfdec5765e8667fa6f61f75bc36986cdcf9
Subject of commit:
[gdb/testsuite] Fix c++/14186 kpass in cpexprs.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d3/d3308cfdec5765e8667fa6f61f75bc36986cdcf9/
*** 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/d3/d3308cfdec5765e8667fa6f61f75bc36986cdcf9//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/d3/d3308cfdec5765e8667fa6f61f75bc36986cdcf9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-25 20:31 [binutils-gdb] plugin: Call dlclose before return in try_load_plugin gdb-buildbot
@ 2020-02-25 19:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-25 19:41 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/1951
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
dcf06b89b9129da6988878a77afdd02d3acc2e30
Subject of commit:
plugin: Call dlclose before return in try_load_plugin
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/dc/dcf06b89b9129da6988878a77afdd02d3acc2e30/
*** 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=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/dc/dcf06b89b9129da6988878a77afdd02d3acc2e30//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/dc/dcf06b89b9129da6988878a77afdd02d3acc2e30//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-25 17:41 [binutils-gdb] [gdb/testsuite] Be quiet about missing prelink in solib-overlap.exp gdb-buildbot
@ 2020-02-25 18:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-25 18:04 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/1950
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
86cbc5dc163fb8f0927b82d5f0e3809a3820389b
Subject of commit:
[gdb/testsuite] Be quiet about missing prelink in solib-overlap.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/86/86cbc5dc163fb8f0927b82d5f0e3809a3820389b/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/86/86cbc5dc163fb8f0927b82d5f0e3809a3820389b//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/86/86cbc5dc163fb8f0927b82d5f0e3809a3820389b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-25 15:19 [binutils-gdb] [gdb/testsuite] Ignore pass in gdb_caching_proc gdb-buildbot
@ 2020-02-25 15:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-25 15:54 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/1949
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
9db2b96b0759fda3347743caba66a395d115e335
Subject of commit:
[gdb/testsuite] Ignore pass in gdb_caching_proc
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9d/9db2b96b0759fda3347743caba66a395d115e335/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================
*** 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/9d/9db2b96b0759fda3347743caba66a395d115e335//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/9d/9db2b96b0759fda3347743caba66a395d115e335//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-25 10:26 [binutils-gdb] _bfd_alloc_and_read gdb-buildbot
@ 2020-02-25 11:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-25 11:17 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/1947
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
2bb3687ba8720558082d1575823868286d7916b5
Subject of commit:
_bfd_alloc_and_read
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2b/2bb3687ba8720558082d1575823868286d7916b5/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new FAIL: gdb.threads/tls.exp: print a_thread_local
==============================================
*** 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/2b/2bb3687ba8720558082d1575823868286d7916b5//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/2b/2bb3687ba8720558082d1575823868286d7916b5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-25 8:24 [binutils-gdb] Miscellaneous memory alloc related fixes gdb-buildbot
@ 2020-02-25 8:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-25 8:28 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/1946
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
806470a219e84665a59fc6be632d4ed6a4ad908b
Subject of commit:
Miscellaneous memory alloc related fixes
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/80/806470a219e84665a59fc6be632d4ed6a4ad908b/
*** Diff to previous build ***
==============================================
new FAIL: gdb.threads/async.exp: thread 2: could not run to all_started
==============================================
*** 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/80/806470a219e84665a59fc6be632d4ed6a4ad908b//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/80/806470a219e84665a59fc6be632d4ed6a4ad908b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-25 5:39 [binutils-gdb] _bfd_mul_overflow gdb-buildbot
@ 2020-02-25 5:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-25 5:24 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/1945
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
1f4361a77b18c5ab32baf2f30fefe5e301e017be
Subject of commit:
_bfd_mul_overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1f/1f4361a77b18c5ab32baf2f30fefe5e301e017be/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/1f/1f4361a77b18c5ab32baf2f30fefe5e301e017be//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/1f/1f4361a77b18c5ab32baf2f30fefe5e301e017be//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-25 0:38 [binutils-gdb] alloc2 used unnecessarily gdb-buildbot
@ 2020-02-25 0:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-25 0:41 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/1943
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
446f7ed5abfd2d0bed8c4442d0634b1a8bc116f4
Subject of commit:
alloc2 used unnecessarily
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/446f7ed5abfd2d0bed8c4442d0634b1a8bc116f4/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/446f7ed5abfd2d0bed8c4442d0634b1a8bc116f4//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/44/446f7ed5abfd2d0bed8c4442d0634b1a8bc116f4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-24 21:02 [binutils-gdb] bfd_get_size cache gdb-buildbot
@ 2020-02-24 21:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-24 21:26 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/1942
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
b03202e32c8235997b3485b0b4655926ad97a1cc
Subject of commit:
bfd_get_size cache
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b0/b03202e32c8235997b3485b0b4655926ad97a1cc/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
==============================================
*** 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/b0/b03202e32c8235997b3485b0b4655926ad97a1cc//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/b0/b03202e32c8235997b3485b0b4655926ad97a1cc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-24 18:26 [binutils-gdb] bfd_get_file_size calls gdb-buildbot
@ 2020-02-24 18:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-24 18: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/1940
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
7c5fa58ea907c46817b915ec8b9b35a180e0e74c
Subject of commit:
bfd_get_file_size calls
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7c/7c5fa58ea907c46817b915ec8b9b35a180e0e74c/
*** 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/7c/7c5fa58ea907c46817b915ec8b9b35a180e0e74c//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/7c/7c5fa58ea907c46817b915ec8b9b35a180e0e74c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-24 13:30 [binutils-gdb] bfd_size_type to size_t gdb-buildbot
@ 2020-02-24 13:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-24 13:07 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/1938
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
986f078366b193ed9f5bd02af965f3af958ba859
Subject of commit:
bfd_size_type to size_t
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/98/986f078366b193ed9f5bd02af965f3af958ba859/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/98/986f078366b193ed9f5bd02af965f3af958ba859//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/98/986f078366b193ed9f5bd02af965f3af958ba859//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-24 9:10 [binutils-gdb] gdbserver: Add RISC-V/Linux support gdb-buildbot
@ 2020-02-24 8:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-24 8:39 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/1936
Author:
Maciej W. Rozycki <macro@wdc.com>
Commit tested:
bf84f7066626c78884436e1c39fb60f04c665f21
Subject of commit:
gdbserver: Add RISC-V/Linux support
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bf/bf84f7066626c78884436e1c39fb60f04c665f21/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/bf/bf84f7066626c78884436e1c39fb60f04c665f21//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/bf/bf84f7066626c78884436e1c39fb60f04c665f21//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-24 6:35 [binutils-gdb] gdb/riscv: Update API for looking up target descriptions gdb-buildbot
@ 2020-02-24 6:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-24 6:24 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/1935
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
d1c9b20ff9eca75a6bc33105cb2a46cebc67c482
Subject of commit:
gdb/riscv: Update API for looking up target descriptions
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d1/d1c9b20ff9eca75a6bc33105cb2a46cebc67c482/
*** 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/d1/d1c9b20ff9eca75a6bc33105cb2a46cebc67c482//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/d1/d1c9b20ff9eca75a6bc33105cb2a46cebc67c482//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-24 5:36 [binutils-gdb] [gdb/testsuite] Be quiet about untested dtrace-prob.exp gdb-buildbot
@ 2020-02-24 5:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-24 5:46 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/1934
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
89e2fdc56a4cf9c738c58605df810f8ee23c7309
Subject of commit:
[gdb/testsuite] Be quiet about untested dtrace-prob.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/89/89e2fdc56a4cf9c738c58605df810f8ee23c7309/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/89/89e2fdc56a4cf9c738c58605df810f8ee23c7309//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/89/89e2fdc56a4cf9c738c58605df810f8ee23c7309//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-24 2:18 [binutils-gdb] gdb: change print format of flag enums with value 0 gdb-buildbot
@ 2020-02-24 2:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-24 2:05 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/1933
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
373d7ac0f158764e32d621b4d311771189001f1c
Subject of commit:
gdb: change print format of flag enums with value 0
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/37/373d7ac0f158764e32d621b4d311771189001f1c/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/37/373d7ac0f158764e32d621b4d311771189001f1c//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/37/373d7ac0f158764e32d621b4d311771189001f1c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-23 18:51 [binutils-gdb] gdb: fix printing of flag enums with multi-bit enumerators gdb-buildbot
@ 2020-02-23 18:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-23 18:42 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/1930
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
edd45eb06bfc4683922c6877589004632e6e6d29
Subject of commit:
gdb: fix printing of flag enums with multi-bit enumerators
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ed/edd45eb06bfc4683922c6877589004632e6e6d29/
*** 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-extended-gdbserver-m64/ed/edd45eb06bfc4683922c6877589004632e6e6d29//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/ed/edd45eb06bfc4683922c6877589004632e6e6d29//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-23 16:07 [binutils-gdb] Fix build with gcc-4.8.x gdb-buildbot
@ 2020-02-23 16:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-23 16:02 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/1929
Author:
Bernd Edlinger <bernd.edlinger@hotmail.de>
Commit tested:
6d0cf4464e0477db8c15b00a99df09d84d55cda4
Subject of commit:
Fix build with gcc-4.8.x
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6d/6d0cf4464e0477db8c15b00a99df09d84d55cda4/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/6d/6d0cf4464e0477db8c15b00a99df09d84d55cda4//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/6d/6d0cf4464e0477db8c15b00a99df09d84d55cda4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-23 13:38 [binutils-gdb] gdb: update email address for Palmer Dabbelt gdb-buildbot
@ 2020-02-23 13:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-23 13:38 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/1928
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
7001c1b7dcde6b0e8967652d18a7c1794d5faa78
Subject of commit:
gdb: update email address for Palmer Dabbelt
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/70/7001c1b7dcde6b0e8967652d18a7c1794d5faa78/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================
*** 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/70/7001c1b7dcde6b0e8967652d18a7c1794d5faa78//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/70/7001c1b7dcde6b0e8967652d18a7c1794d5faa78//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-23 11:31 [binutils-gdb] [gdb/testsuite] Handle missing gnatmake in gnat_runtime_has_debug_info gdb-buildbot
@ 2020-02-23 11:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-23 11:38 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/1927
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
d4295de4f3d6cb24289d79c424d430b0df38db07
Subject of commit:
[gdb/testsuite] Handle missing gnatmake in gnat_runtime_has_debug_info
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d4/d4295de4f3d6cb24289d79c424d430b0df38db07/
*** 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/d4/d4295de4f3d6cb24289d79c424d430b0df38db07//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/d4/d4295de4f3d6cb24289d79c424d430b0df38db07//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-23 7:26 [binutils-gdb] x86: Remove CpuABM and add CpuPOPCNT gdb-buildbot
@ 2020-02-23 7:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-23 7: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/1925
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
272a84b1204fdd4e96df689383b163b4a52be933
Subject of commit:
x86: Remove CpuABM and add CpuPOPCNT
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/27/272a84b1204fdd4e96df689383b163b4a52be933/
*** 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/27/272a84b1204fdd4e96df689383b163b4a52be933//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/27/272a84b1204fdd4e96df689383b163b4a52be933//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-23 4:51 [binutils-gdb] x86: fold certain VCVT{,U}SI2S{S,D} templates gdb-buildbot
@ 2020-02-23 4:51 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-23 4:51 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/1924
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
1f730c46141c1513e72cb24d471834b448d6d0e6
Subject of commit:
x86: fold certain VCVT{,U}SI2S{S,D} templates
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1f/1f730c46141c1513e72cb24d471834b448d6d0e6/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/1f/1f730c46141c1513e72cb24d471834b448d6d0e6//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/1f/1f730c46141c1513e72cb24d471834b448d6d0e6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-23 2:25 [binutils-gdb] x86: fold AddrPrefixOpReg templates gdb-buildbot
@ 2020-02-23 2:21 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-23 2:21 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/1923
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
c8f8eebc3fc3662fdb9077355ecde9c88bd33727
Subject of commit:
x86: fold AddrPrefixOpReg templates
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c8/c8f8eebc3fc3662fdb9077355ecde9c88bd33727/
*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
==============================================
*** 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/c8/c8f8eebc3fc3662fdb9077355ecde9c88bd33727//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/c8/c8f8eebc3fc3662fdb9077355ecde9c88bd33727//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-23 0:04 [binutils-gdb] x86/Intel: improve diagnostics for ambiguous VCVT* operands gdb-buildbot
@ 2020-02-23 0:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-23 0:04 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/1922
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
b9915cbc7d3ac2b9cd136248defbf9538b9a9bcf
Subject of commit:
x86/Intel: improve diagnostics for ambiguous VCVT* operands
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b9/b9915cbc7d3ac2b9cd136248defbf9538b9a9bcf/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/b9/b9915cbc7d3ac2b9cd136248defbf9538b9a9bcf//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/b9/b9915cbc7d3ac2b9cd136248defbf9538b9a9bcf//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-22 21:19 [binutils-gdb] x86: Don't disable SSE3 when disabling SSE4a gdb-buildbot
@ 2020-02-22 21:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-22 21:26 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/1921
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
ce504911e5c4068a3498eebde4064b24382c7598
Subject of commit:
x86: Don't disable SSE3 when disabling SSE4a
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/ce504911e5c4068a3498eebde4064b24382c7598/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ce/ce504911e5c4068a3498eebde4064b24382c7598//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/ce/ce504911e5c4068a3498eebde4064b24382c7598//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-22 19:07 [binutils-gdb] Re: x86: Don't disable SSE4a when disabling SSE4 gdb-buildbot
@ 2020-02-22 19:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-22 19:07 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/1920
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
dabec65da1b937ea40a30b7a844fbf91782b718a
Subject of commit:
Re: x86: Don't disable SSE4a when disabling SSE4
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/da/dabec65da1b937ea40a30b7a844fbf91782b718a/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/da/dabec65da1b937ea40a30b7a844fbf91782b718a//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/da/dabec65da1b937ea40a30b7a844fbf91782b718a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-22 2:10 [binutils-gdb] Change gdbserver to use existing gnulib and libiberty gdb-buildbot
@ 2020-02-22 1:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-22 1:53 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/1916
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
1a627e7e6c61e97951932e3a9c5fb706efe3ef3e
Subject of commit:
Change gdbserver to use existing gnulib and libiberty
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1a/1a627e7e6c61e97951932e3a9c5fb706efe3ef3e/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/1a/1a627e7e6c61e97951932e3a9c5fb706efe3ef3e//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/1a/1a627e7e6c61e97951932e3a9c5fb706efe3ef3e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-21 16:05 [binutils-gdb] Have testsuite find gdbserver in new location gdb-buildbot
@ 2020-02-21 21:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-21 21:54 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/1914
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
f251f50533110132ce83678d644d53b1d1110b05
Subject of commit:
Have testsuite find gdbserver in new location
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f2/f251f50533110132ce83678d644d53b1d1110b05/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/exec_changed.exp: start second
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new FAIL: gdb.base/foll-exec-mode.exp: same,continue,no_infswitch: use correct executable
new FAIL: gdb.base/foll-exec-mode.exp: same,next,no_infswitch: use correct executable
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=auto: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=off: advanced
new FAIL: gdb.base/step-over-no-symbols.exp: displaced=on: advanced
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
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/f2/f251f50533110132ce83678d644d53b1d1110b05//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/f2/f251f50533110132ce83678d644d53b1d1110b05//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-07 15:53 [binutils-gdb] Add support for the GBZ80 and Z80N variants of the Z80 architecture, and add DWARF debug info support to the Z80 assembler gdb-buildbot
@ 2020-02-07 16:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-07 16:20 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/1891
Author:
Sergey Belyashov <sergey.belyashov@gmail.com>
Commit tested:
9fc0b501af78bc4a92f53ec712e1aaa123e0224c
Subject of commit:
Add support for the GBZ80 and Z80N variants of the Z80 architecture, and add DWARF debug info support to the Z80 assembler.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9f/9fc0b501af78bc4a92f53ec712e1aaa123e0224c/
*** Diff to previous build ***
==============================================
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/9f/9fc0b501af78bc4a92f53ec712e1aaa123e0224c//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/9f/9fc0b501af78bc4a92f53ec712e1aaa123e0224c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-07 13:39 [binutils-gdb] Stop the BFD library from complaining if a segment has no sections attached to it gdb-buildbot
@ 2020-02-07 13:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-07 13:40 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/1890
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
9984857cfd9a85a5d1b99162f9838aba099d20a0
Subject of commit:
Stop the BFD library from complaining if a segment has no sections attached to it.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/99/9984857cfd9a85a5d1b99162f9838aba099d20a0/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/99/9984857cfd9a85a5d1b99162f9838aba099d20a0//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/99/9984857cfd9a85a5d1b99162f9838aba099d20a0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-07 2:57 [binutils-gdb] ELF: Support the section flag 'o' in .section directive gdb-buildbot
@ 2020-02-07 3:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-07 3:11 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/1888
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
b7d072167715829eed0622616f6ae0182900de3e
Subject of commit:
ELF: Support the section flag 'o' in .section directive
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b7/b7d072167715829eed0622616f6ae0182900de3e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new UNRESOLVED: gdb.trace/trace-break.exp: 5 ftrace ftrace ftrace@0: 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-native-extended-gdbserver-m64/b7/b7d072167715829eed0622616f6ae0182900de3e//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/b7/b7d072167715829eed0622616f6ae0182900de3e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-06 23:47 [binutils-gdb] sim/aarch64: Fix register ordering bug in blr (PR sim/25318) gdb-buildbot
@ 2020-02-07 1:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-07 1:59 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/1887
Author:
Carlo Bramini <carlo_bramini@users.sourceforge.net>
Commit tested:
69b1ffdb01106ed84a41a80f6ad2d9c26c4f45a9
Subject of commit:
sim/aarch64: Fix register ordering bug in blr (PR sim/25318)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/69/69b1ffdb01106ed84a41a80f6ad2d9c26c4f45a9/
*** Diff to previous build ***
==============================================
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/69/69b1ffdb01106ed84a41a80f6ad2d9c26c4f45a9//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/69/69b1ffdb01106ed84a41a80f6ad2d9c26c4f45a9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-06 20:58 [binutils-gdb] gdb: Catch exceptions if the source file is not found gdb-buildbot
@ 2020-02-06 23:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-06 23:27 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/1886
Author:
Shahab Vahedi <shahab@synopsys.com>
Commit tested:
1d5d29e73f4b5f1af4df5b6e39ccf2fa722acead
Subject of commit:
gdb: Catch exceptions if the source file is not found
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1d/1d5d29e73f4b5f1af4df5b6e39ccf2fa722acead/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: 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-native-extended-gdbserver-m64/1d/1d5d29e73f4b5f1af4df5b6e39ccf2fa722acead//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/1d/1d5d29e73f4b5f1af4df5b6e39ccf2fa722acead//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-06 19:07 [binutils-gdb] gdb/testsuite: Avoid leaking a port number into results summary gdb-buildbot
@ 2020-02-06 19:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-06 19:40 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/1885
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
b0999b9b4574371f4b7682d0ccf5f7dbf1702262
Subject of commit:
gdb/testsuite: Avoid leaking a port number into results summary
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b0/b0999b9b4574371f4b7682d0ccf5f7dbf1702262/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/b0/b0999b9b4574371f4b7682d0ccf5f7dbf1702262//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/b0/b0999b9b4574371f4b7682d0ccf5f7dbf1702262//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-06 14:16 [binutils-gdb] V850/BFD: Fix uninitialized `insn[4]' with R_V850_LONGJUMP warning gdb-buildbot
@ 2020-02-06 14:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-06 14:42 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/1883
Author:
Maciej W. Rozycki <macro@wdc.com>
Commit tested:
b93a662bcf1eaebac6af70684fbc5bd510fcadcf
Subject of commit:
V850/BFD: Fix uninitialized `insn[4]' with R_V850_LONGJUMP warning
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b9/b93a662bcf1eaebac6af70684fbc5bd510fcadcf/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 10: delete all breakpoints in delete_breakpoints
==============================================
*** 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/b9/b93a662bcf1eaebac6af70684fbc5bd510fcadcf//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/b9/b93a662bcf1eaebac6af70684fbc5bd510fcadcf//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-06 2:38 [binutils-gdb] Disambiguate info_print_options gdb-buildbot
@ 2020-02-06 2:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-06 2:40 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/1882
Author:
Ali Tamur <tamur@google.com>
Commit tested:
095252be0b51750f0b135bcbf8624dd70a59bc1f
Subject of commit:
Disambiguate info_print_options
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/09/095252be0b51750f0b135bcbf8624dd70a59bc1f/
*** 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 FAIL: gdb.trace/collection.exp: setting breakpoint at end
new UNRESOLVED: gdb.trace/pending.exp: ftrace resolved_in_trace: can't run to main
new FAIL: gdb.trace/pending.exp: ftrace works: continue to marker
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 0
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 1
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 2
==============================================
*** 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/09/095252be0b51750f0b135bcbf8624dd70a59bc1f//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/09/095252be0b51750f0b135bcbf8624dd70a59bc1f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-05 21:46 [binutils-gdb] Fix base class function call gdb-buildbot
@ 2020-02-06 0:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-06 0:46 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/1881
Author:
Christian Biesinger <cbiesinger@google.com>
Commit tested:
c6a42d11acf2d485bf70d76eda76fd005fcd6825
Subject of commit:
Fix base class function call
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c6/c6a42d11acf2d485bf70d76eda76fd005fcd6825/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new UNRESOLVED: gdb.trace/change-loc.exp: 1 ftrace: 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 UNRESOLVED: gdb.trace/tsv.exp: 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-native-extended-gdbserver-m64/c6/c6a42d11acf2d485bf70d76eda76fd005fcd6825//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/c6/c6a42d11acf2d485bf70d76eda76fd005fcd6825//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-05 18:15 [binutils-gdb] RISC-V/Linux/native: Factor out target description determination gdb-buildbot
@ 2020-02-05 18:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-05 18:28 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/1879
Author:
Maciej W. Rozycki <macro@wdc.com>
Commit tested:
f6480e70001df1c8151362cd4621578bcb293224
Subject of commit:
RISC-V/Linux/native: Factor out target description determination
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f6/f6480e70001df1c8151362cd4621578bcb293224/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f6/f6480e70001df1c8151362cd4621578bcb293224//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/f6/f6480e70001df1c8151362cd4621578bcb293224//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-05 1:05 [binutils-gdb] Re: Support fusion for ELFv2 stubs gdb-buildbot
@ 2020-02-05 15:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-05 15:47 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/1878
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
6df4c9c2ff42d2f932bc737a13c50faa4e3aefcd
Subject of commit:
Re: Support fusion for ELFv2 stubs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6d/6df4c9c2ff42d2f932bc737a13c50faa4e3aefcd/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/entry-values.exp: can't run to main
new UNRESOLVED: gdb.trace/read-memory.exp: can't run to main to check for trace support
new UNRESOLVED: gdb.trace/read-memory.exp: delete all breakpoints in delete_breakpoints
==============================================
*** 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/6d/6df4c9c2ff42d2f932bc737a13c50faa4e3aefcd//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/6d/6df4c9c2ff42d2f932bc737a13c50faa4e3aefcd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-04 23:00 [binutils-gdb] gdb/fortran: Allow for using Flang in Fortran testing gdb-buildbot
@ 2020-02-05 4:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-05 4:02 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/1877
Author:
Alok Kumar Sharma <alokkumar.sharma@amd.com>
Commit tested:
c3b149eb7697b376df1b3a47d0102afda389ee6d
Subject of commit:
gdb/fortran: Allow for using Flang in Fortran testing
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c3/c3b149eb7697b376df1b3a47d0102afda389ee6d/
*** 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/c3/c3b149eb7697b376df1b3a47d0102afda389ee6d//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/c3/c3b149eb7697b376df1b3a47d0102afda389ee6d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-04 20:26 [binutils-gdb] gdb/sim: Assert that the simulator ptid is not null_ptid gdb-buildbot
@ 2020-02-05 0:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-05 0:07 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/1876
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
dcc9fbc6da9536f65c55dbb67f50ab3c2e086c6e
Subject of commit:
gdb/sim: Assert that the simulator ptid is not null_ptid
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/dc/dcc9fbc6da9536f65c55dbb67f50ab3c2e086c6e/
*** Diff to previous build ***
==============================================
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/dc/dcc9fbc6da9536f65c55dbb67f50ab3c2e086c6e//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/dc/dcc9fbc6da9536f65c55dbb67f50ab3c2e086c6e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-04 18:25 [binutils-gdb] [gdb/testsuite] Add note to 'Race detection' entry in README gdb-buildbot
@ 2020-02-04 21:51 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-04 21:51 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/1875
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
f8dcc90b6030b641fa7b0b33e4203498bbb0f0e0
Subject of commit:
[gdb/testsuite] Add note to 'Race detection' entry in README
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f8/f8dcc90b6030b641fa7b0b33e4203498bbb0f0e0/
*** 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/f8/f8dcc90b6030b641fa7b0b33e4203498bbb0f0e0//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/f8/f8dcc90b6030b641fa7b0b33e4203498bbb0f0e0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-04 17:17 [binutils-gdb] [gdb/testsuite] Make inferior_exited_re match a single line gdb-buildbot
@ 2020-02-04 18:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-04 18:58 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/1874
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
f90ac7c2bbd56492f566dbeff2e464a999d03fb8
Subject of commit:
[gdb/testsuite] Make inferior_exited_re match a single line
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f9/f90ac7c2bbd56492f566dbeff2e464a999d03fb8/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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-extended-gdbserver-m64/f9/f90ac7c2bbd56492f566dbeff2e464a999d03fb8//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/f9/f90ac7c2bbd56492f566dbeff2e464a999d03fb8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-04 12:16 [binutils-gdb] Minor fix for R_PPC_VLE_ADDR20 gdb-buildbot
@ 2020-02-04 17:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-04 17:02 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/1873
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
24872cb30211b650a9360edd2476a6a1dd033cbb
Subject of commit:
Minor fix for R_PPC_VLE_ADDR20
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/24/24872cb30211b650a9360edd2476a6a1dd033cbb/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.server/ext-run.exp: load new file without any gdbserver inferior
PASS -> FAIL: gdb.server/ext-run.exp: monitor 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-extended-gdbserver-m64/24/24872cb30211b650a9360edd2476a6a1dd033cbb//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/24/24872cb30211b650a9360edd2476a6a1dd033cbb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-04 10:50 [binutils-gdb] [gdb/testsuite] Use non-capturing parentheses for inferior_exited_re gdb-buildbot
@ 2020-02-04 15:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-04 15:34 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/1872
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
780636aec079208cd8ee1079f27d0d5ac5dae48a
Subject of commit:
[gdb/testsuite] Use non-capturing parentheses for inferior_exited_re
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/78/780636aec079208cd8ee1079f27d0d5ac5dae48a/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/78/780636aec079208cd8ee1079f27d0d5ac5dae48a//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/78/780636aec079208cd8ee1079f27d0d5ac5dae48a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-04 8:58 [binutils-gdb] Change ints to bools around thread_info executing/resumed gdb-buildbot
@ 2020-02-04 12:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-04 12:07 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/1871
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
719546c44f5777a3902a2f913c70fd15b942461d
Subject of commit:
Change ints to bools around thread_info executing/resumed
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/71/719546c44f5777a3902a2f913c70fd15b942461d/
*** 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-extended-gdbserver-m64/71/719546c44f5777a3902a2f913c70fd15b942461d//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/71/719546c44f5777a3902a2f913c70fd15b942461d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-04 6:24 [binutils-gdb] ubsan: d30v: negation of -2147483648 gdb-buildbot
@ 2020-02-04 6:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-04 6:55 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/1870
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
c5d7be0c97a75ff20b49d57bff078360464125fb
Subject of commit:
ubsan: d30v: negation of -2147483648
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c5/c5d7be0c97a75ff20b49d57bff078360464125fb/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c5/c5d7be0c97a75ff20b49d57bff078360464125fb//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/c5/c5d7be0c97a75ff20b49d57bff078360464125fb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-04 4:19 [binutils-gdb] gdb: fix powerpc disassembly tests gdb-buildbot
@ 2020-02-04 4:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-04 4:30 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/1869
Author:
Rogerio Alves <rcardoso@linux.ibm.com>
Commit tested:
5d2e1193286fe6278ee70c2137b3726994f2e28b
Subject of commit:
gdb: fix powerpc disassembly tests
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5d/5d2e1193286fe6278ee70c2137b3726994f2e28b/
*** 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/5d/5d2e1193286fe6278ee70c2137b3726994f2e28b//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/5d/5d2e1193286fe6278ee70c2137b3726994f2e28b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-04 2:02 [binutils-gdb] Fixed gdb to print arrays with very high indexes gdb-buildbot
@ 2020-02-04 2:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-04 2:14 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/1868
Author:
Alok Kumar Sharma <AlokKumar.Sharma@amd.com>
Commit tested:
e409c542cc3cedebf78c7827e976d36955d477bb
Subject of commit:
Fixed gdb to print arrays with very high indexes
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e4/e409c542cc3cedebf78c7827e976d36955d477bb/
*** Diff to previous build ***
==============================================
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/e4/e409c542cc3cedebf78c7827e976d36955d477bb//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/e4/e409c542cc3cedebf78c7827e976d36955d477bb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-03 13:01 [binutils-gdb] RISC-V/Linux/native: Determine FLEN dynamically gdb-buildbot
@ 2020-02-03 13:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-03 13:47 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/1867
Author:
Maciej W. Rozycki <macro@wdc.com>
Commit tested:
ee98c0daf93476e323134492cf604e71b05ca883
Subject of commit:
RISC-V/Linux/native: Determine FLEN dynamically
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ee/ee98c0daf93476e323134492cf604e71b05ca883/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.trace/tspeed.exp: break 100
new UNRESOLVED: gdb.trace/tspeed.exp: break 74
new UNRESOLVED: gdb.trace/tspeed.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.trace/tspeed.exp: set conditional fast tracepoint
new UNRESOLVED: gdb.trace/tspeed.exp: tstop
==============================================
*** 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/ee/ee98c0daf93476e323134492cf604e71b05ca883//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/ee/ee98c0daf93476e323134492cf604e71b05ca883//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-03 11:10 [binutils-gdb] Fix compilation error with musl in gdb/testsuite/gdb.base/fileio.c gdb-buildbot
@ 2020-02-03 11:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-03 11:36 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/1866
Author:
Lukas Durfina <ldurfina@tachyum.com>
Commit tested:
b0029748ca991c64cf9f0851217b7762e4877854
Subject of commit:
Fix compilation error with musl in gdb/testsuite/gdb.base/fileio.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b0/b0029748ca991c64cf9f0851217b7762e4877854/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/b0/b0029748ca991c64cf9f0851217b7762e4877854//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/b0/b0029748ca991c64cf9f0851217b7762e4877854//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-03 3:18 [binutils-gdb] section.c: Fix typo in comments (withe -> with) gdb-buildbot
@ 2020-02-03 5:51 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-03 5:51 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/1864
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
ef4627fabaebd4f4a2bc2c5e92c95d747f388d78
Subject of commit:
section.c: Fix typo in comments (withe -> with)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/ef4627fabaebd4f4a2bc2c5e92c95d747f388d78/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ef/ef4627fabaebd4f4a2bc2c5e92c95d747f388d78//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/ef/ef4627fabaebd4f4a2bc2c5e92c95d747f388d78//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-03 1:44 [binutils-gdb] ELF: Add support for unique section ID to assembler gdb-buildbot
@ 2020-02-03 1:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-03 1:58 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/1863
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
a8c4d40b578378be3b12575d127d4c7bd9972f32
Subject of commit:
ELF: Add support for unique section ID to assembler
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a8c4d40b578378be3b12575d127d4c7bd9972f32/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/a8/a8c4d40b578378be3b12575d127d4c7bd9972f32//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/a8/a8c4d40b578378be3b12575d127d4c7bd9972f32//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-01 14:47 [binutils-gdb] Move pending obsolete targets onto the definitely obsolete list gdb-buildbot
@ 2020-02-01 16:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-01 16:04 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/1861
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
5a9212a11cf50bdf7c3583aa610f745fd97153ea
Subject of commit:
Move pending obsolete targets onto the definitely obsolete list
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5a/5a9212a11cf50bdf7c3583aa610f745fd97153ea/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5a/5a9212a11cf50bdf7c3583aa610f745fd97153ea//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/5a/5a9212a11cf50bdf7c3583aa610f745fd97153ea//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-02-01 1:58 [binutils-gdb] gdb: Do not print empty-group regs when printing general ones gdb-buildbot
@ 2020-02-01 6:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-01 6:23 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/1859
Author:
Shahab Vahedi <shahab@synopsys.com>
Commit tested:
aa66aac47b4dd38f9524ddb5546c08cc09930d37
Subject of commit:
gdb: Do not print empty-group regs when printing general ones
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/aa/aa66aac47b4dd38f9524ddb5546c08cc09930d37/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new 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/Ubuntu-Aarch64-native-extended-gdbserver-m64/aa/aa66aac47b4dd38f9524ddb5546c08cc09930d37//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/aa/aa66aac47b4dd38f9524ddb5546c08cc09930d37//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-31 23:56 [binutils-gdb] [gdb/testsuite] Fix typo in gdb.server/server-kill-python.exp gdb-buildbot
@ 2020-02-01 2:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-02-01 2:36 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/1858
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
195a8287c17eab55b52e8119a7e925fe42465383
Subject of commit:
[gdb/testsuite] Fix typo in gdb.server/server-kill-python.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/19/195a8287c17eab55b52e8119a7e925fe42465383/
*** 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-extended-gdbserver-m64/19/195a8287c17eab55b52e8119a7e925fe42465383//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/19/195a8287c17eab55b52e8119a7e925fe42465383//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-31 18:42 [binutils-gdb] x86: replace EXxmm_mdq by EXVexWdqScalar gdb-buildbot
@ 2020-01-31 22:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-31 22:02 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/1856
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
4102be5cf925999e1f3f999c95479360291205de
Subject of commit:
x86: replace EXxmm_mdq by EXVexWdqScalar
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/41/4102be5cf925999e1f3f999c95479360291205de/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/41/4102be5cf925999e1f3f999c95479360291205de//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/41/4102be5cf925999e1f3f999c95479360291205de//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-31 16:23 [binutils-gdb] x86: drop unused EXVexWdq / vex_w_dq_mode gdb-buildbot
@ 2020-01-31 19:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-31 19:13 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/1855
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
825bd36ceadf7fd3288ced262d6aed9f5b9ab919
Subject of commit:
x86: drop unused EXVexWdq / vex_w_dq_mode
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/82/825bd36ceadf7fd3288ced262d6aed9f5b9ab919/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups with filter
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 10: delete all breakpoints in delete_breakpoints
==============================================
*** 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/82/825bd36ceadf7fd3288ced262d6aed9f5b9ab919//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/82/825bd36ceadf7fd3288ced262d6aed9f5b9ab919//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-31 14:28 [binutils-gdb] aarch64: Fix MOVPRFX markup for bf16 conversions gdb-buildbot
@ 2020-01-31 17:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-31 17:02 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/1854
Author:
Richard Sandiford <richard.sandiford@arm.com>
Commit tested:
c3036ed0633483325bf37e5cf70d44c7b66bfc61
Subject of commit:
aarch64: Fix MOVPRFX markup for bf16 conversions
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c3/c3036ed0633483325bf37e5cf70d44c7b66bfc61/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new UNRESOLVED: gdb.trace/pending.exp: trace resolved_in_trace: 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-native-extended-gdbserver-m64/c3/c3036ed0633483325bf37e5cf70d44c7b66bfc61//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/c3/c3036ed0633483325bf37e5cf70d44c7b66bfc61//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-31 11:27 [binutils-gdb] Fix ravenscar-thread.c for multi-target gdb-buildbot
@ 2020-01-31 14:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-31 14:18 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/1853
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
fd9faca826e6ee9178cf0b1c2486e3c662d6375a
Subject of commit:
Fix ravenscar-thread.c for multi-target
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fd/fd9faca826e6ee9178cf0b1c2486e3c662d6375a/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/fd/fd9faca826e6ee9178cf0b1c2486e3c662d6375a//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/fd/fd9faca826e6ee9178cf0b1c2486e3c662d6375a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-31 8:07 [binutils-gdb] gdb/tui: Disassembler scrolling of very small programs gdb-buildbot
@ 2020-01-31 12:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-31 12:25 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/1852
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
42330a681af23a80d3e1f201d2a65886875e74bd
Subject of commit:
gdb/tui: Disassembler scrolling of very small programs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/42/42330a681af23a80d3e1f201d2a65886875e74bd/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/42/42330a681af23a80d3e1f201d2a65886875e74bd//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/42/42330a681af23a80d3e1f201d2a65886875e74bd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-31 5:30 [binutils-gdb] gdb/tui: Update help text for scroll commands gdb-buildbot
@ 2020-01-31 11:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-31 11:19 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/1851
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
7a27a45bc66f38cbaee868092f0aaa55ef8d4564
Subject of commit:
gdb/tui: Update help text for scroll commands
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7a/7a27a45bc66f38cbaee868092f0aaa55ef8d4564/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.trace/pending.exp: ftrace resolved_in_trace: 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-native-extended-gdbserver-m64/7a/7a27a45bc66f38cbaee868092f0aaa55ef8d4564//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/7a/7a27a45bc66f38cbaee868092f0aaa55ef8d4564//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-31 1:50 [binutils-gdb] OOM in setup_group gdb-buildbot
@ 2020-01-31 4:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-31 4:50 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/1849
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
327301a4604da40da264c554daa8c1e97aa2fbe2
Subject of commit:
OOM in setup_group
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/32/327301a4604da40da264c554daa8c1e97aa2fbe2/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new UNRESOLVED: gdb.threads/async.exp: thread 3: could not run to all_started
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/32/327301a4604da40da264c554daa8c1e97aa2fbe2//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/32/327301a4604da40da264c554daa8c1e97aa2fbe2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-30 23:32 [binutils-gdb] ubsan: m32c: left shift of negative value gdb-buildbot
@ 2020-01-31 2:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-31 2:31 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/1848
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
0c115f8483ac32dc95fde902cac8c8bb99f9c3be
Subject of commit:
ubsan: m32c: left shift of negative value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0c/0c115f8483ac32dc95fde902cac8c8bb99f9c3be/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
PASS -> FAIL: gdb.base/info-os.exp: continue
PASS -> FAIL: gdb.base/info-os.exp: get file descriptors
PASS -> FAIL: gdb.base/info-os.exp: get internet-domain sockets
PASS -> FAIL: gdb.base/info-os.exp: get message queues
PASS -> FAIL: gdb.base/info-os.exp: get process groups
PASS -> FAIL: gdb.base/info-os.exp: get process list
PASS -> FAIL: gdb.base/info-os.exp: get semaphores
PASS -> FAIL: gdb.base/info-os.exp: get shared-memory regions
PASS -> FAIL: gdb.base/info-os.exp: get threads
PASS -> FAIL: gdb.base/info-os.exp: info os unknown_entry
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/0c/0c115f8483ac32dc95fde902cac8c8bb99f9c3be//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/0c/0c115f8483ac32dc95fde902cac8c8bb99f9c3be//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-30 21:14 [binutils-gdb] Identify reproducible builds in 'objdump -p' output for PE files gdb-buildbot
@ 2020-01-31 0:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-31 0:28 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/1847
Author:
Jon Turney <jon.turney@dronecode.org.uk>
Commit tested:
b5d36aaa8ad9b0aee720b7a6b3270d561a27cb6f
Subject of commit:
Identify reproducible builds in 'objdump -p' output for PE files
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b5/b5d36aaa8ad9b0aee720b7a6b3270d561a27cb6f/
*** 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-extended-gdbserver-m64/b5/b5d36aaa8ad9b0aee720b7a6b3270d561a27cb6f//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/b5/b5d36aaa8ad9b0aee720b7a6b3270d561a27cb6f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-30 19:14 [binutils-gdb] Add some new PE_IMAGE_DEBUG_TYPE values gdb-buildbot
@ 2020-01-30 21:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-30 21:57 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/1846
Author:
Jon Turney <jon.turney@dronecode.org.uk>
Commit tested:
1957ab1030b40939544c88c1c4eb1b8a62bd0b5d
Subject of commit:
Add some new PE_IMAGE_DEBUG_TYPE values
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/19/1957ab1030b40939544c88c1c4eb1b8a62bd0b5d/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/19/1957ab1030b40939544c88c1c4eb1b8a62bd0b5d//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/19/1957ab1030b40939544c88c1c4eb1b8a62bd0b5d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-30 17:52 [binutils-gdb] Bugfixes for pe_print_debugdata() gdb-buildbot
@ 2020-01-30 19:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-30 19:59 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/1845
Author:
Jon Turney <jon.turney@dronecode.org.uk>
Commit tested:
87b2920fc54826c2a0015ab3a19b7b873d208653
Subject of commit:
Bugfixes for pe_print_debugdata()
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/87/87b2920fc54826c2a0015ab3a19b7b873d208653/
*** 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/87/87b2920fc54826c2a0015ab3a19b7b873d208653//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/87/87b2920fc54826c2a0015ab3a19b7b873d208653//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-30 15:16 [binutils-gdb] cpu,opcodes,gas: fix neg and neg32 instructions in BPF gdb-buildbot
@ 2020-01-30 17:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-30 17:22 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/1844
Author:
Jose E. Marchesi <jose.marchesi@oracle.com>
Commit tested:
bd434cc4d94ec3d2f9fc1e7c00c27b074f962bc1
Subject of commit:
cpu,opcodes,gas: fix neg and neg32 instructions in BPF
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bd/bd434cc4d94ec3d2f9fc1e7c00c27b074f962bc1/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: awatch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: rwatch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=off: watch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: awatch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: break: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: hbreak: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: rwatch: can't run to main
new FAIL: gdb.base/break-idempotent.exp: pie=nopie: always_inserted=on: watch: 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-native-extended-gdbserver-m64/bd/bd434cc4d94ec3d2f9fc1e7c00c27b074f962bc1//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/bd/bd434cc4d94ec3d2f9fc1e7c00c27b074f962bc1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-30 13:57 [binutils-gdb] x86-64: honor vendor specifics for near RET gdb-buildbot
@ 2020-01-30 14:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-30 14:43 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/1843
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
aeab2b26dbea33221db4debaf31c97277cfaea5e
Subject of commit:
x86-64: honor vendor specifics for near RET
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ae/aeab2b26dbea33221db4debaf31c97277cfaea5e/
*** 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/ae/aeab2b26dbea33221db4debaf31c97277cfaea5e//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/ae/aeab2b26dbea33221db4debaf31c97277cfaea5e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-30 11:31 [binutils-gdb] x86: drop further pointless/bogus DefaultSize gdb-buildbot
@ 2020-01-30 12:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-30 12:10 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/1842
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
62b3f54810e4065cdfe420141df34c97b5abb165
Subject of commit:
x86: drop further pointless/bogus DefaultSize
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/62/62b3f54810e4065cdfe420141df34c97b5abb165/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/62/62b3f54810e4065cdfe420141df34c97b5abb165//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/62/62b3f54810e4065cdfe420141df34c97b5abb165//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-30 9:00 [binutils-gdb] ubsan: tic4x: left shift cannot be represented in type 'int' gdb-buildbot
@ 2020-01-30 10:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-30 10:17 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/1841
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
1bd8ae1004919317e7aa3cc2bb1d5d0d74d9f03e
Subject of commit:
ubsan: tic4x: left shift cannot be represented in type 'int'
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1b/1bd8ae1004919317e7aa3cc2bb1d5d0d74d9f03e/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=1: dlopen=0: version_id_main=1: could not run to main
new UNRESOLVED: gdb.base/print-file-var.exp: lang=c: hidden=1: dlopen=0: version_id_main=1: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
PASS -> FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/1b/1bd8ae1004919317e7aa3cc2bb1d5d0d74d9f03e//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/1b/1bd8ae1004919317e7aa3cc2bb1d5d0d74d9f03e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-29 20:47 [binutils-gdb] gdbserver: Fix whitespace configure.srv damage for `i[34567]86-*-mingw*' gdb-buildbot
@ 2020-01-29 22:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-29 22:56 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/1837
Author:
Maciej W. Rozycki <macro@wdc.com>
Commit tested:
287c844a33a4d3b513bce17165158dd5fb2d820c
Subject of commit:
gdbserver: Fix whitespace configure.srv damage for `i[34567]86-*-mingw*'
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/28/287c844a33a4d3b513bce17165158dd5fb2d820c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/28/287c844a33a4d3b513bce17165158dd5fb2d820c//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/28/287c844a33a4d3b513bce17165158dd5fb2d820c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-29 18:29 [binutils-gdb] Fix configure.srv error for Linux on PowerPC gdb-buildbot
@ 2020-01-29 20:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-29 20:31 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/1836
Author:
Pedro Franco de Carvalho <pedromfc@linux.ibm.com>
Commit tested:
548a204f7d6a7442d940c0afe778f553ec53427f
Subject of commit:
Fix configure.srv error for Linux on PowerPC
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/54/548a204f7d6a7442d940c0afe778f553ec53427f/
*** 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/54/548a204f7d6a7442d940c0afe778f553ec53427f//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/54/548a204f7d6a7442d940c0afe778f553ec53427f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-29 16:39 [binutils-gdb] Test handling of additional brk instruction patterns gdb-buildbot
@ 2020-01-29 17:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-29 17:37 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/1835
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
b62a802857adafecc64bc1de3efd1c2e59059af9
Subject of commit:
Test handling of additional brk instruction patterns
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b6/b62a802857adafecc64bc1de3efd1c2e59059af9/
*** Diff to previous build ***
==============================================
new FAIL: gdb.python/py-events.exp: get current thread
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
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/b6/b62a802857adafecc64bc1de3efd1c2e59059af9//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/b6/b62a802857adafecc64bc1de3efd1c2e59059af9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-29 15:16 [binutils-gdb] Recognize more program breakpoint patterns gdb-buildbot
@ 2020-01-29 15:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-29 15:18 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/1834
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
5133a31537c8f90f3b8b7172f385b3b2856d1566
Subject of commit:
Recognize more program breakpoint patterns
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/51/5133a31537c8f90f3b8b7172f385b3b2856d1566/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpexprs.exp: continue to base::operator>>=
PASS -> UNRESOLVED: gdb.cp/cpexprs.exp: continue to base::operator[]
new FAIL: gdb.cp/cpexprs.exp: info breakpoints
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch b on inferior 1
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch b on inferior 1
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 2
new FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at marker_exit
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: start to main inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: switch back to inferior 1
new UNRESOLVED: gdb.python/py-record-full.exp: can't run to main
new UNRESOLVED: gdb.python/py-record-full.exp: check if python 3
new UNRESOLVED: gdb.python/py-record-full.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.python/py-record-full.exp: verify python support
==============================================
*** 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/51/5133a31537c8f90f3b8b7172f385b3b2856d1566//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/51/5133a31537c8f90f3b8b7172f385b3b2856d1566//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-29 8:24 [binutils-gdb] [gdb/testsuite] Fix gdb.threads/watchpoint-fork.exp race gdb-buildbot
@ 2020-01-29 8:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-29 8:20 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/1832
Author:
Tom de Vries <tdevries@suse.de>
Commit tested:
ee2a6fc60413a2f5bc6641fd6d06f460c9deab3f
Subject of commit:
[gdb/testsuite] Fix gdb.threads/watchpoint-fork.exp race
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ee/ee2a6fc60413a2f5bc6641fd6d06f460c9deab3f/
*** 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/ee/ee2a6fc60413a2f5bc6641fd6d06f460c9deab3f//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/ee/ee2a6fc60413a2f5bc6641fd6d06f460c9deab3f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-28 12:11 [binutils-gdb] RISC-V: Fix gdbserver problem with handling arch strings gdb-buildbot
@ 2020-01-28 19:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-28 19:38 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/1830
Author:
Jim Wilson <jimw@sifive.com>
Commit tested:
c35d018b1a5ec604e49a807402c4205530b25ca8
Subject of commit:
RISC-V: Fix gdbserver problem with handling arch strings.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c3/c35d018b1a5ec604e49a807402c4205530b25ca8/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: can't run to main
new UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: delete all breakpoints in delete_breakpoints
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/c3/c35d018b1a5ec604e49a807402c4205530b25ca8//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/c3/c35d018b1a5ec604e49a807402c4205530b25ca8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-28 10:20 [binutils-gdb] Harden gdb.base/step-over-syscall.exp gdb-buildbot
@ 2020-01-28 16:50 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-28 16:50 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/1829
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
16b10d6e61bfa0940333354e8144b3924dc86e56
Subject of commit:
Harden gdb.base/step-over-syscall.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/16/16b10d6e61bfa0940333354e8144b3924dc86e56/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : fork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: fork: displaced=on: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: pc after stepi matches insn addr after syscall
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=on: 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-extended-gdbserver-m64/16/16b10d6e61bfa0940333354e8144b3924dc86e56//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/16/16b10d6e61bfa0940333354e8144b3924dc86e56//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-28 8:32 [binutils-gdb] Remove cpu-plugin.c gdb-buildbot
@ 2020-01-28 14:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-28 14:38 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/1828
Author:
Andreas Schwab <schwab@suse.de>
Commit tested:
086b06f3c9daa4eee3c1ddd547af32553d1187d6
Subject of commit:
Remove cpu-plugin.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/08/086b06f3c9daa4eee3c1ddd547af32553d1187d6/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new UNRESOLVED: gdb.threads/signal-command-handle-nopass.exp: step-over no: can't run to main
new UNRESOLVED: gdb.threads/signal-command-handle-nopass.exp: step-over no: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: with thread-specific bp: next: delete all breakpoints in delete_breakpoints
==============================================
*** 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/08/086b06f3c9daa4eee3c1ddd547af32553d1187d6//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/08/086b06f3c9daa4eee3c1ddd547af32553d1187d6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-28 5:10 [binutils-gdb] AArch64: Fix cfinv disassembly issues gdb-buildbot
@ 2020-01-28 8:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-28 8:58 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/1826
Author:
Tamar Christina <tamar.christina@arm.com>
Commit tested:
7568c93bf95a518797dfb2987b04911164c14a36
Subject of commit:
AArch64: Fix cfinv disassembly issues
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/75/7568c93bf95a518797dfb2987b04911164c14a36/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: 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-native-extended-gdbserver-m64/75/7568c93bf95a518797dfb2987b04911164c14a36//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/75/7568c93bf95a518797dfb2987b04911164c14a36//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-28 2:42 [binutils-gdb] Two minor changes in ctfread.c gdb-buildbot
@ 2020-01-28 7:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-28 7:03 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/1825
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
168f8c6ba008bed9fcc2fe7098416f608e4419af
Subject of commit:
Two minor changes in ctfread.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/16/168f8c6ba008bed9fcc2fe7098416f608e4419af/
*** Diff to previous build ***
==============================================
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/16/168f8c6ba008bed9fcc2fe7098416f608e4419af//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/16/168f8c6ba008bed9fcc2fe7098416f608e4419af//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-28 1:14 [binutils-gdb] Mark all weak aliases for copy relocations gdb-buildbot
@ 2020-01-28 4:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-28 4:36 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/1824
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
3024a17ae029ec7f55b498e99ddd6238e22fe565
Subject of commit:
Mark all weak aliases for copy relocations
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/30/3024a17ae029ec7f55b498e99ddd6238e22fe565/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/pending.exp: trace action_resolved: can't run to main
new UNRESOLVED: gdb.trace/pending.exp: trace installed_in_trace: 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-native-extended-gdbserver-m64/30/3024a17ae029ec7f55b498e99ddd6238e22fe565//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/30/3024a17ae029ec7f55b498e99ddd6238e22fe565//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-27 22:58 [binutils-gdb] Virtualize "readin" and "compunit_symtab" gdb-buildbot
@ 2020-01-28 2:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-28 2:06 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/1823
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
128a391fe45a234587dc585e03a7726cd6ee0255
Subject of commit:
Virtualize "readin" and "compunit_symtab"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/12/128a391fe45a234587dc585e03a7726cd6ee0255/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/exec_changed.exp: start second
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new FAIL: gdb.base/foll-exec-mode.exp: same,continue,no_infswitch: use correct executable
new FAIL: gdb.base/foll-exec-mode.exp: same,next,no_infswitch: use correct executable
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
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/12/128a391fe45a234587dc585e03a7726cd6ee0255//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/12/128a391fe45a234587dc585e03a7726cd6ee0255//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-27 14:31 [binutils-gdb] Consolidate psymtab "Reading" messages gdb-buildbot
@ 2020-01-27 19:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-27 19:22 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/1820
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
077cbab270376098e90c841690f9e4439b63d3d4
Subject of commit:
Consolidate psymtab "Reading" messages
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/07/077cbab270376098e90c841690f9e4439b63d3d4/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/fork-thread-pending.exp: can't run to main
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: couldn't run to all_started
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: setting breakpoint at 80 if arg != 0
==============================================
*** 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/07/077cbab270376098e90c841690f9e4439b63d3d4//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/07/077cbab270376098e90c841690f9e4439b63d3d4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-27 11:43 [binutils-gdb] Introduce partial_symtab::read_symtab method gdb-buildbot
@ 2020-01-27 15:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-27 15:25 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/1818
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
891813beaab0029c88c9eeec9c1847d68a4d6050
Subject of commit:
Introduce partial_symtab::read_symtab method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/89/891813beaab0029c88c9eeec9c1847d68a4d6050/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/89/891813beaab0029c88c9eeec9c1847d68a4d6050//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/89/891813beaab0029c88c9eeec9c1847d68a4d6050//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-27 7:17 [binutils-gdb] Change allocate_psymtab to be a constructor gdb-buildbot
@ 2020-01-27 10:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-27 10:02 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/1815
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
32caafd02b069c36908f41f53ae0cbca1911aaca
Subject of commit:
Change allocate_psymtab to be a constructor
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/32/32caafd02b069c36908f41f53ae0cbca1911aaca/
*** 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/32/32caafd02b069c36908f41f53ae0cbca1911aaca//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/32/32caafd02b069c36908f41f53ae0cbca1911aaca//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-27 6:04 [binutils-gdb] Do not allocate psymtabs via psymtab_storage gdb-buildbot
@ 2020-01-27 7:49 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-27 7:49 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/1814
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
abaa2f2340a400fd19aea2973f705fe813d620d4
Subject of commit:
Do not allocate psymtabs via psymtab_storage
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ab/abaa2f2340a400fd19aea2973f705fe813d620d4/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/ab/abaa2f2340a400fd19aea2973f705fe813d620d4//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/ab/abaa2f2340a400fd19aea2973f705fe813d620d4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-27 3:43 [binutils-gdb] Change some psymtab fields to bool gdb-buildbot
@ 2020-01-27 5:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-27 5:34 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/1813
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
6d94535fc68e1fd06816c5685166ebcec56119ce
Subject of commit:
Change some psymtab fields to bool
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6d/6d94535fc68e1fd06816c5685166ebcec56119ce/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/6d/6d94535fc68e1fd06816c5685166ebcec56119ce//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/6d/6d94535fc68e1fd06816c5685166ebcec56119ce//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-27 1:33 [binutils-gdb] Use new and delete for psymtabs gdb-buildbot
@ 2020-01-27 2:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-27 2:47 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/1812
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
6f17252b76dbe8bedd32b6df6ce52af707bfb04b
Subject of commit:
Use new and delete for psymtabs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6f/6f17252b76dbe8bedd32b6df6ce52af707bfb04b/
*** Diff to previous build ***
==============================================
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/Ubuntu-Aarch64-native-extended-gdbserver-m64/6f/6f17252b76dbe8bedd32b6df6ce52af707bfb04b//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/6f/6f17252b76dbe8bedd32b6df6ce52af707bfb04b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-27 0:17 [binutils-gdb] Remove an include from machoread.c gdb-buildbot
@ 2020-01-27 0:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-27 0:22 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/1811
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
f6f1cebcbe4dd33cdd65094267cc33395d55ece7
Subject of commit:
Remove an include from machoread.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f6/f6f1cebcbe4dd33cdd65094267cc33395d55ece7/
*** 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/f6/f6f1cebcbe4dd33cdd65094267cc33395d55ece7//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/f6/f6f1cebcbe4dd33cdd65094267cc33395d55ece7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-25 14:11 [binutils-gdb] Document 'set|show exec-file-mismatch (ask|warn|off)' gdb-buildbot
@ 2020-01-25 17:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-25 17:13 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/1809
Author:
Philippe Waroquiers <philippe.waroquiers@skynet.be>
Commit tested:
e47e48f6a767bb4874be99f6854d09823cd79adc
Subject of commit:
Document 'set|show exec-file-mismatch (ask|warn|off)'
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e4/e47e48f6a767bb4874be99f6854d09823cd79adc/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: can't run to main
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/e4/e47e48f6a767bb4874be99f6854d09823cd79adc//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/e4/e47e48f6a767bb4874be99f6854d09823cd79adc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-25 12:25 [binutils-gdb] Test 'set exec-file-mismatch ask|warn|off' gdb-buildbot
@ 2020-01-25 12:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-25 12:36 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/1808
Author:
Philippe Waroquiers <philippe.waroquiers@skynet.be>
Commit tested:
b1468492c69335b023e6e4adf15ba0de0263812e
Subject of commit:
Test 'set exec-file-mismatch ask|warn|off'.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b1/b1468492c69335b023e6e4adf15ba0de0263812e/
*** 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/b1/b1468492c69335b023e6e4adf15ba0de0263812e//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/b1/b1468492c69335b023e6e4adf15ba0de0263812e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-25 11:59 [binutils-gdb] Implement 'set/show exec-file-mismatch' gdb-buildbot
@ 2020-01-25 11:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-25 11:52 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/1807
Author:
Philippe Waroquiers <philippe.waroquiers@skynet.be>
Commit tested:
a2fedca99c622e1b523046d09f573b06de0207a6
Subject of commit:
Implement 'set/show exec-file-mismatch'.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a2/a2fedca99c622e1b523046d09f573b06de0207a6/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/foll-exec-mode.exp: same,continue,no_infswitch: use correct executable
PASS -> FAIL: gdb.base/foll-exec-mode.exp: same,next,no_infswitch: use correct executable
==============================================
*** 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/a2/a2fedca99c622e1b523046d09f573b06de0207a6//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/a2/a2fedca99c622e1b523046d09f573b06de0207a6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-24 22:55 [binutils-gdb] RISC-V: Minor cleanup for s extension support gdb-buildbot
@ 2020-01-24 22:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-24 22:56 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/1803
Author:
Jim Wilson <jimw@sifive.com>
Commit tested:
b5f998b2dd80e673b1506fbe5113e5e4834346bc
Subject of commit:
RISC-V: Minor cleanup for s extension support.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b5/b5f998b2dd80e673b1506fbe5113e5e4834346bc/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/b5/b5f998b2dd80e673b1506fbe5113e5e4834346bc//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/b5/b5f998b2dd80e673b1506fbe5113e5e4834346bc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-24 19:57 [binutils-gdb] Add install-strip target to gdbserver gdb-buildbot
@ 2020-01-24 19:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-24 19:36 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/1801
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
bdaed379e9c19ff38a00c9e210e4f7d56f7c5880
Subject of commit:
Add install-strip target to gdbserver
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bd/bdaed379e9c19ff38a00c9e210e4f7d56f7c5880/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/trace-break.exp: 1 trace off: can't run to main
new UNRESOLVED: gdb.trace/trace-break.exp: 1 trace off: delete all breakpoints in delete_breakpoints
new FAIL: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
new FAIL: gdb.trace/trace-mt.exp: ftrace on: 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-native-extended-gdbserver-m64/bd/bdaed379e9c19ff38a00c9e210e4f7d56f7c5880//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/bd/bdaed379e9c19ff38a00c9e210e4f7d56f7c5880//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-24 18:28 [binutils-gdb] Make the class name in the definition match the declaration gdb-buildbot
@ 2020-01-24 18:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-24 18:47 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/1800
Author:
Christian Biesinger <cbiesinger@google.com>
Commit tested:
3050c6f4bcfd43c526b4a47fcb0ac15d3de5c1fd
Subject of commit:
Make the class name in the definition match the declaration
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/30/3050c6f4bcfd43c526b4a47fcb0ac15d3de5c1fd/
*** 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/30/3050c6f4bcfd43c526b4a47fcb0ac15d3de5c1fd//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/30/3050c6f4bcfd43c526b4a47fcb0ac15d3de5c1fd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-24 17:05 [binutils-gdb] Support the NetBSD version of pthread_setname_np gdb-buildbot
@ 2020-01-24 17:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-24 17:19 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/1798
Author:
Christian Biesinger <cbiesinger@google.com>
Commit tested:
43198d20896df6a785165650914d0b73fc9450a8
Subject of commit:
Support the NetBSD version of pthread_setname_np
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/43/43198d20896df6a785165650914d0b73fc9450a8/
*** Diff to previous build ***
==============================================
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/43/43198d20896df6a785165650914d0b73fc9450a8//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/43/43198d20896df6a785165650914d0b73fc9450a8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-24 16:00 [binutils-gdb] Fix an illegal call to free() when copying a PE format file gdb-buildbot
@ 2020-01-24 16:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-24 16:36 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/1797
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
caa31cfad6c16ffbd5c396f74273fc9e413906f0
Subject of commit:
Fix an illegal call to free() when copying a PE format file.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ca/caa31cfad6c16ffbd5c396f74273fc9e413906f0/
*** 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/ca/caa31cfad6c16ffbd5c396f74273fc9e413906f0//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/ca/caa31cfad6c16ffbd5c396f74273fc9e413906f0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-24 13:41 [binutils-gdb] gdbserver: Make `make TAGS' actually work gdb-buildbot
@ 2020-01-24 15:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-24 15:11 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/1796
Author:
Maciej W. Rozycki <macro@wdc.com>
Commit tested:
42cd72aa0279520384327a1f6d0ebd2eb2200645
Subject of commit:
gdbserver: Make `make TAGS' actually work
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/42/42cd72aa0279520384327a1f6d0ebd2eb2200645/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/change-loc.exp: 1 ftrace: can't run to main
new UNRESOLVED: gdb.trace/change-loc.exp: 1 ftrace: delete all breakpoints in delete_breakpoints
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
==============================================
*** 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/42/42cd72aa0279520384327a1f6d0ebd2eb2200645//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/42/42cd72aa0279520384327a1f6d0ebd2eb2200645//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-24 13:32 [binutils-gdb] gdbserver: Remove a stale TAGS recipe for config files gdb-buildbot
@ 2020-01-24 14:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-24 14:15 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/1794
Author:
Maciej W. Rozycki <macro@wdc.com>
Commit tested:
42ba50eccbb9793a68d19b4f04598ab657201fcc
Subject of commit:
gdbserver: Remove a stale TAGS recipe for config files
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/42/42ba50eccbb9793a68d19b4f04598ab657201fcc/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/exec_changed.exp: start second
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
new FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/42/42ba50eccbb9793a68d19b4f04598ab657201fcc//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/42/42ba50eccbb9793a68d19b4f04598ab657201fcc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-24 3:19 [binutils-gdb] gdb: Enable stdin on exception in execute_gdb_command gdb-buildbot
@ 2020-01-24 3:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-24 3:44 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/1792
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
1ba1ac88011703abcd0271e4f5d00927dc69a09a
Subject of commit:
gdb: Enable stdin on exception in execute_gdb_command
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1b/1ba1ac88011703abcd0271e4f5d00927dc69a09a/
*** Diff to previous build ***
==============================================
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
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/1b/1ba1ac88011703abcd0271e4f5d00927dc69a09a//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/1b/1ba1ac88011703abcd0271e4f5d00927dc69a09a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-24 2:36 [binutils-gdb] gdb: Re-enable stdin for all UIs from start_event_loop gdb-buildbot
@ 2020-01-24 3:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-24 3:02 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/1791
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
f3364a6d0fefe44fc26a1d5025b3af55ecec5cad
Subject of commit:
gdb: Re-enable stdin for all UIs from start_event_loop
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f3/f3364a6d0fefe44fc26a1d5025b3af55ecec5cad/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/collection.exp: print /x $pc
new FAIL: gdb.trace/collection.exp: print /x $sp
new FAIL: gdb.trace/collection.exp: print /x $x29
==============================================
*** 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/f3/f3364a6d0fefe44fc26a1d5025b3af55ecec5cad//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/f3/f3364a6d0fefe44fc26a1d5025b3af55ecec5cad//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-24 1:36 [binutils-gdb] gdb/tui: asm window handles invalid memory and scrolls better gdb-buildbot
@ 2020-01-24 2:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-24 2:05 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/1790
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
733d0a679536628eb1be4b4b8aa6384de24ff1f1
Subject of commit:
gdb/tui: asm window handles invalid memory and scrolls better
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/73/733d0a679536628eb1be4b4b8aa6384de24ff1f1/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.tui/tui-layout-asm.exp: scroll to end of assembler
==============================================
*** 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/73/733d0a679536628eb1be4b4b8aa6384de24ff1f1//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/73/733d0a679536628eb1be4b4b8aa6384de24ff1f1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-24 1:15 [binutils-gdb] gdb/tui: Prevent exceptions from trying to cross readline gdb-buildbot
@ 2020-01-24 1:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-24 1:04 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/1789
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
2f267673f0fdee9287e6d404ecd4f2d29da0d2f2
Subject of commit:
gdb/tui: Prevent exceptions from trying to cross readline
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2f/2f267673f0fdee9287e6d404ecd4f2d29da0d2f2/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 10: delete all breakpoints in delete_breakpoints
==============================================
*** 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/2f/2f267673f0fdee9287e6d404ecd4f2d29da0d2f2//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/2f/2f267673f0fdee9287e6d404ecd4f2d29da0d2f2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-23 23:30 [binutils-gdb] gdb: fix variable shadowing error in darwin-nat.c gdb-buildbot
@ 2020-01-23 23:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-23 23:15 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/1787
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
ab53f3826242df0f051f9a6fa4b2926687205025
Subject of commit:
gdb: fix variable shadowing error in darwin-nat.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ab/ab53f3826242df0f051f9a6fa4b2926687205025/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/ab/ab53f3826242df0f051f9a6fa4b2926687205025//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/ab/ab53f3826242df0f051f9a6fa4b2926687205025//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-23 20:40 [binutils-gdb] gdb: fix darwin-nat.c build / adapt to multi-target gdb-buildbot
@ 2020-01-23 20:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-23 20:32 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/1786
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
e7eee665a1524cc4569d0c2f5c9d4aa2be64c9e8
Subject of commit:
gdb: fix darwin-nat.c build / adapt to multi-target
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e7/e7eee665a1524cc4569d0c2f5c9d4aa2be64c9e8/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/e7/e7eee665a1524cc4569d0c2f5c9d4aa2be64c9e8//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/e7/e7eee665a1524cc4569d0c2f5c9d4aa2be64c9e8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-23 18:35 [binutils-gdb] Cache the text section offset of shared libraries gdb-buildbot
@ 2020-01-23 18:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-23 18:25 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/1785
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
c162ed3e66aa985fa2e79d0e7ccd2da80a532c1e
Subject of commit:
Cache the text section offset of shared libraries
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c1/c162ed3e66aa985fa2e79d0e7ccd2da80a532c1e/
*** 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/c1/c162ed3e66aa985fa2e79d0e7ccd2da80a532c1e//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/c1/c162ed3e66aa985fa2e79d0e7ccd2da80a532c1e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-23 15:17 [binutils-gdb] Updated translations for various binutils sub-directories gdb-buildbot
@ 2020-01-23 15:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-23 15:30 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/1784
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
24e648d4b80268c164ba1e1eecb581bf9c42745f
Subject of commit:
Updated translations for various binutils sub-directories.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/24/24e648d4b80268c164ba1e1eecb581bf9c42745f/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: 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-native-extended-gdbserver-m64/24/24e648d4b80268c164ba1e1eecb581bf9c42745f//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/24/24e648d4b80268c164ba1e1eecb581bf9c42745f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-23 11:18 [binutils-gdb] PR25444, Floating point exception in _bfd_elf_compute_section_file_positions gdb-buildbot
@ 2020-01-23 11:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-23 11:15 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/1783
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
67641dd326e026b84d0e4ce47f32f71132449e27
Subject of commit:
PR25444, Floating point exception in _bfd_elf_compute_section_file_positions
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/67/67641dd326e026b84d0e4ce47f32f71132449e27/
*** Diff to previous build ***
==============================================
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/67/67641dd326e026b84d0e4ce47f32f71132449e27//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/67/67641dd326e026b84d0e4ce47f32f71132449e27//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-22 22:31 [binutils-gdb] MSP430: Fix simulator execution of RRUX instruction gdb-buildbot
@ 2020-01-22 22:30 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-22 22:30 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/1781
Author:
Jozef Lawrynowicz <jozef.l@mittosystems.com>
Commit tested:
b7dcc42dfde12c3a1ccb7149b3cf8ef2f0992ea3
Subject of commit:
MSP430: Fix simulator execution of RRUX instruction
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b7/b7dcc42dfde12c3a1ccb7149b3cf8ef2f0992ea3/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: can't run to main
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: can't run to main
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: delete all breakpoints in delete_breakpoints
==============================================
*** 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/b7/b7dcc42dfde12c3a1ccb7149b3cf8ef2f0992ea3//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/b7/b7dcc42dfde12c3a1ccb7149b3cf8ef2f0992ea3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-22 10:05 [binutils-gdb] PowerPC64 tls_get_addr_desc static support gdb-buildbot
@ 2020-01-22 9:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-22 9:37 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/1780
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
a804e4760a9f05aeb61071f8caad3579e6a197a2
Subject of commit:
PowerPC64 tls_get_addr_desc static support
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a8/a804e4760a9f05aeb61071f8caad3579e6a197a2/
*** Diff to previous build ***
==============================================
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/a8/a804e4760a9f05aeb61071f8caad3579e6a197a2//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/a8/a804e4760a9f05aeb61071f8caad3579e6a197a2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-22 8:10 [binutils-gdb] PowerPC64 TLS optimization fix gdb-buildbot
@ 2020-01-22 8:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-22 8:13 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/1778
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
abc489c64a3137f3751797e8ce60d53a2c432e1d
Subject of commit:
PowerPC64 TLS optimization fix
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ab/abc489c64a3137f3751797e8ce60d53a2c432e1d/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/watchpoint-unaligned.exp: continue
new FAIL: gdb.base/watchpoint-unaligned.exp: delete 3
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/ab/abc489c64a3137f3751797e8ce60d53a2c432e1d//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/ab/abc489c64a3137f3751797e8ce60d53a2c432e1d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-21 22:44 [binutils-gdb] gdb: remove uses of iterate_over_inferiors in remote-sim.c gdb-buildbot
@ 2020-01-21 22:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-21 22:36 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/1775
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
b3ee6dd9f205f1d4ff208dbc9575528dc6e1bce7
Subject of commit:
gdb: remove uses of iterate_over_inferiors in remote-sim.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b3/b3ee6dd9f205f1d4ff208dbc9575528dc6e1bce7/
*** Diff to previous build ***
==============================================
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/b3/b3ee6dd9f205f1d4ff208dbc9575528dc6e1bce7//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/b3/b3ee6dd9f205f1d4ff208dbc9575528dc6e1bce7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-21 22:09 [binutils-gdb] gdb: fix indentation in infrun.c gdb-buildbot
@ 2020-01-21 21:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-21 21:59 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/1774
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
f9fac3c81b322a3c0d2e50d19769c06fdada7a94
Subject of commit:
gdb: fix indentation in infrun.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f9/f9fac3c81b322a3c0d2e50d19769c06fdada7a94/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: can't run to main
new UNRESOLVED: gdb.threads/pthread_cond_wait.exp: delete all breakpoints in delete_breakpoints
==============================================
*** 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/f9/f9fac3c81b322a3c0d2e50d19769c06fdada7a94//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/f9/f9fac3c81b322a3c0d2e50d19769c06fdada7a94//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-21 20:17 [binutils-gdb] Allow use of Pygments to colorize source code gdb-buildbot
@ 2020-01-21 20:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-21 20:13 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/1773
Author:
Tom Tromey <tromey@adacore.com>
Commit tested:
f6474de9aacec990d44d2d65a337668b389efd99
Subject of commit:
Allow use of Pygments to colorize source code
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f6/f6474de9aacec990d44d2d65a337668b389efd99/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/f6/f6474de9aacec990d44d2d65a337668b389efd99//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/f6/f6474de9aacec990d44d2d65a337668b389efd99//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-21 14:43 [binutils-gdb] Add more debugging output to aarch64_displaced_step_fixup gdb-buildbot
@ 2020-01-21 15:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-21 15:11 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/1771
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
1ab139e5bedfec2bb277287574cc0322c21a252b
Subject of commit:
Add more debugging output to aarch64_displaced_step_fixup
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1a/1ab139e5bedfec2bb277287574cc0322c21a252b/
*** Diff to previous build ***
==============================================
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/1a/1ab139e5bedfec2bb277287574cc0322c21a252b//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/1a/1ab139e5bedfec2bb277287574cc0322c21a252b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-21 14:14 [binutils-gdb] Fix step-over-syscall.exp failure gdb-buildbot
@ 2020-01-21 14:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-21 14:00 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/1770
Author:
Luis Machado <luis.machado@linaro.org>
Commit tested:
0c27188999bfc5bf03536bf44593c4ed8df296c3
Subject of commit:
Fix step-over-syscall.exp failure
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0c/0c27188999bfc5bf03536bf44593c4ed8df296c3/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: 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-native-extended-gdbserver-m64/0c/0c27188999bfc5bf03536bf44593c4ed8df296c3//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/0c/0c27188999bfc5bf03536bf44593c4ed8df296c3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-21 8:57 [binutils-gdb] x86: improve handling of insns with ambiguous operand sizes gdb-buildbot
@ 2020-01-21 9:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-21 9:03 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/1769
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
c006a730e9a35489cc8d081f422a7ea1b62ada56
Subject of commit:
x86: improve handling of insns with ambiguous operand sizes
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c0/c006a730e9a35489cc8d081f422a7ea1b62ada56/
*** Diff to previous build ***
==============================================
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/c0/c006a730e9a35489cc8d081f422a7ea1b62ada56//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/c0/c006a730e9a35489cc8d081f422a7ea1b62ada56//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-21 8:09 [binutils-gdb] x86: VCVTNEPS2BF16{X,Y} should permit broadcasting gdb-buildbot
@ 2020-01-21 8:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-21 8:07 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/1768
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
c906a69a1f30c12074165f5be0027249c643e904
Subject of commit:
x86: VCVTNEPS2BF16{X,Y} should permit broadcasting
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c9/c906a69a1f30c12074165f5be0027249c643e904/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/c9/c906a69a1f30c12074165f5be0027249c643e904//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/c9/c906a69a1f30c12074165f5be0027249c643e904//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-21 2:18 [binutils-gdb] Updated translations for various binutils sub-directories gdb-buildbot
@ 2020-01-20 18:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-20 18:31 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/1767
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
26916852e189323593102561f5e3e2137b892dec
Subject of commit:
Updated translations for various binutils sub-directories
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/26/26916852e189323593102561f5e3e2137b892dec/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: 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-native-extended-gdbserver-m64/26/26916852e189323593102561f5e3e2137b892dec//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/26/26916852e189323593102561f5e3e2137b892dec//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-20 16:29 [binutils-gdb] x86-64: Fix TLSDESC relaxation for x32 gdb-buildbot
@ 2020-01-20 16:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-20 16:27 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/1766
Author:
H.J. Lu <hjl.tools@gmail.com>
Commit tested:
14470f0755dbc942aa684ed647df978ddfc7cff2
Subject of commit:
x86-64: Fix TLSDESC relaxation for x32
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/14/14470f0755dbc942aa684ed647df978ddfc7cff2/
*** Diff to previous build ***
==============================================
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/14/14470f0755dbc942aa684ed647df978ddfc7cff2//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/14/14470f0755dbc942aa684ed647df978ddfc7cff2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-20 15:39 [binutils-gdb] Don't touch r11 in __tls_get_addr stub gdb-buildbot
@ 2020-01-20 15:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-20 15:39 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/1765
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
b9ca1af69e097b8dc15b23a4e12194f9567c4ad7
Subject of commit:
Don't touch r11 in __tls_get_addr stub
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b9/b9ca1af69e097b8dc15b23a4e12194f9567c4ad7/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: 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-native-extended-gdbserver-m64/b9/b9ca1af69e097b8dc15b23a4e12194f9567c4ad7//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/b9/b9ca1af69e097b8dc15b23a4e12194f9567c4ad7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-20 12:44 [binutils-gdb] PowerPC64 ppc_elf_hash_entry, defined_sym_val, is_tls_get_addr gdb-buildbot
@ 2020-01-20 13:14 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-20 13:14 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/1764
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
ed7007c18a83d0d654c366d507fcf053985c698b
Subject of commit:
PowerPC64 ppc_elf_hash_entry, defined_sym_val, is_tls_get_addr
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ed/ed7007c18a83d0d654c366d507fcf053985c698b/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 9: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: 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-native-extended-gdbserver-m64/ed/ed7007c18a83d0d654c366d507fcf053985c698b//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/ed/ed7007c18a83d0d654c366d507fcf053985c698b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-20 10:53 [binutils-gdb] sim: don't rely on inferior_ptid in gdbsim_target::wait gdb-buildbot
@ 2020-01-20 10:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-20 10:53 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/1761
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
cf1d9e092f871df3b34a58cfcde915c689ac9067
Subject of commit:
sim: don't rely on inferior_ptid in gdbsim_target::wait
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/cf/cf1d9e092f871df3b34a58cfcde915c689ac9067/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
new FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
==============================================
*** 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/cf/cf1d9e092f871df3b34a58cfcde915c689ac9067//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/cf/cf1d9e092f871df3b34a58cfcde915c689ac9067//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-20 5:14 [binutils-gdb] sim: add some stdlib.h includes gdb-buildbot
@ 2020-01-20 5:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-20 5:41 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/1760
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
b760fb3a1cd35fda01843ee7cdb3e420f07d27b9
Subject of commit:
sim: add some stdlib.h includes
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b7/b760fb3a1cd35fda01843ee7cdb3e420f07d27b9/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i 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-native-extended-gdbserver-m64/b7/b760fb3a1cd35fda01843ee7cdb3e420f07d27b9//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/b7/b760fb3a1cd35fda01843ee7cdb3e420f07d27b9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-20 4:56 [binutils-gdb] Call disassemble_free_target in gdb gdb-buildbot
@ 2020-01-20 4:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-20 4:56 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/1759
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
4d89c1c79fa53ff2c4e9574148b59d83c21db6d2
Subject of commit:
Call disassemble_free_target in gdb
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4d/4d89c1c79fa53ff2c4e9574148b59d83c21db6d2/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: can't run to main
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: can't run to main
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/4d/4d89c1c79fa53ff2c4e9574148b59d83c21db6d2//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/4d/4d89c1c79fa53ff2c4e9574148b59d83c21db6d2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-20 3:57 [binutils-gdb] Remove flickering from the TUI gdb-buildbot
@ 2020-01-20 3:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-20 3:12 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/1757
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
45bbae5c4b34ef6336cc2a3951f1edf191ff3733
Subject of commit:
Remove flickering from the TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/45/45bbae5c4b34ef6336cc2a3951f1edf191ff3733/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: 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-native-extended-gdbserver-m64/45/45bbae5c4b34ef6336cc2a3951f1edf191ff3733//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/45/45bbae5c4b34ef6336cc2a3951f1edf191ff3733//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-20 2:56 [binutils-gdb] gdb/linux-fork: simplify one_fork_p gdb-buildbot
@ 2020-01-20 2:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-20 2:56 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/1755
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
fa47e4463ab4ee4ddc7858ab11063c7965b232ac
Subject of commit:
gdb/linux-fork: simplify one_fork_p
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fa/fa47e4463ab4ee4ddc7858ab11063c7965b232ac/
*** Diff to previous build ***
==============================================
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/fa/fa47e4463ab4ee4ddc7858ab11063c7965b232ac//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/fa/fa47e4463ab4ee4ddc7858ab11063c7965b232ac//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-18 16:17 [binutils-gdb] Update version to 2.34.50. Regenerate configure and .pot files gdb-buildbot
@ 2020-01-18 16:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-18 16:12 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/1750
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
1b1bb2c67bba67bcf0a9382fb6b6c61874e9b089
Subject of commit:
Update version to 2.34.50. Regenerate configure and .pot files.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1b/1b1bb2c67bba67bcf0a9382fb6b6c61874e9b089/
*** 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 FAIL: gdb.trace/collection.exp: setting breakpoint at end
new UNRESOLVED: gdb.trace/unavailable.exp: collect globals: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.trace/unavailable.exp: collect globals: setting breakpoint at begin
new UNRESOLVED: gdb.trace/unavailable.exp: collect globals: 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/1b/1b1bb2c67bba67bcf0a9382fb6b6c61874e9b089//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/1b/1b1bb2c67bba67bcf0a9382fb6b6c61874e9b089//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-18 15:11 [binutils-gdb] Add markers for 2.34 branch to the NEWS files and ChangeLogs gdb-buildbot
@ 2020-01-18 15:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-18 15:37 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/1749
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
ae77468624a91ca149c470962c9234109c8ca105
Subject of commit:
Add markers for 2.34 branch to the NEWS files and ChangeLogs.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ae/ae77468624a91ca149c470962c9234109c8ca105/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: 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-native-extended-gdbserver-m64/ae/ae77468624a91ca149c470962c9234109c8ca105//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/ae/ae77468624a91ca149c470962c9234109c8ca105//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-18 14:20 [binutils-gdb] Update top level config files with copies from the official repository gdb-buildbot
@ 2020-01-18 14:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-18 14:27 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/1748
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
4fb3a8daaf140ed94beef556d007013f3c5bd738
Subject of commit:
Update top level config files with copies from the official repository.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/4f/4fb3a8daaf140ed94beef556d007013f3c5bd738/
*** Diff to previous build ***
==============================================
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/4f/4fb3a8daaf140ed94beef556d007013f3c5bd738//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/4f/4fb3a8daaf140ed94beef556d007013f3c5bd738//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ 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
@ 2020-01-18 14:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ 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] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-17 20:48 [binutils-gdb] Fix spelling errors gdb-buildbot
@ 2020-01-17 23:48 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-17 23:48 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/1746
Author:
Christian Biesinger <cbiesinger@google.com>
Commit tested:
07f1f3aa536add16b20f2792e1c325fb02b7da2d
Subject of commit:
Fix spelling errors
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/07/07f1f3aa536add16b20f2792e1c325fb02b7da2d/
*** 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/07/07f1f3aa536add16b20f2792e1c325fb02b7da2d//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/07/07f1f3aa536add16b20f2792e1c325fb02b7da2d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-17 17:58 [binutils-gdb] Fix gdbsupport build gdb-buildbot
@ 2020-01-17 20:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-17 20:40 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/1743
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
3684d331fd35f49e4022ac6906dc879552af0442
Subject of commit:
Fix gdbsupport build
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/36/3684d331fd35f49e4022ac6906dc879552af0442/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/exec_changed.exp: start second
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
new FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
new UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
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/36/3684d331fd35f49e4022ac6906dc879552af0442//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/36/3684d331fd35f49e4022ac6906dc879552af0442//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-17 16:40 [binutils-gdb] gdb: remove use of iterate_over_inferiors in mi/mi-interp.c gdb-buildbot
@ 2020-01-17 17:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-17 17:54 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/1739
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
788eca4949d08494109249d35cd599971ce6ec51
Subject of commit:
gdb: remove use of iterate_over_inferiors in mi/mi-interp.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/78/788eca4949d08494109249d35cd599971ce6ec51/
*** Diff to previous build ***
==============================================
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/78/788eca4949d08494109249d35cd599971ce6ec51//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/78/788eca4949d08494109249d35cd599971ce6ec51//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-17 14:39 [binutils-gdb] Update libiberty sources with changes in the gcc mainline gdb-buildbot
@ 2020-01-17 14:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-17 14:39 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/1736
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
533da48302a26885a972e4379eccc26b364e5b53
Subject of commit:
Update libiberty sources with changes in the gcc mainline.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/53/533da48302a26885a972e4379eccc26b364e5b53/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/53/533da48302a26885a972e4379eccc26b364e5b53//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/53/533da48302a26885a972e4379eccc26b364e5b53//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-16 20:01 [binutils-gdb] Ensure proc-service symbols have default visibility (PR build/24805) gdb-buildbot
@ 2020-01-16 20:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-16 20:07 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/1732
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
790f17188a22e722bab9915e1d50307f8cb7c0f9
Subject of commit:
Ensure proc-service symbols have default visibility (PR build/24805)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/79/790f17188a22e722bab9915e1d50307f8cb7c0f9/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 5: delete all breakpoints in delete_breakpoints
==============================================
*** 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/79/790f17188a22e722bab9915e1d50307f8cb7c0f9//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/79/790f17188a22e722bab9915e1d50307f8cb7c0f9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-16 17:59 [binutils-gdb] Support for DWARF5 location lists entries gdb-buildbot
@ 2020-01-16 18:09 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-16 18:09 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/1731
Author:
Nitika Achra <Nitika.Achra@amd.com>
Commit tested:
3112ed9799124edf4d1f9c903da0d59f5a4ca102
Subject of commit:
Support for DWARF5 location lists entries
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/31/3112ed9799124edf4d1f9c903da0d59f5a4ca102/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/mi_task_info.exp: -ada-task-info 3
PASS -> FAIL: gdb.ada/mi_task_info.exp: -ada-task-info with no argument
PASS -> FAIL: gdb.ada/mi_task_info.exp: mi runto task_switch.break_me
==============================================
*** 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/31/3112ed9799124edf4d1f9c903da0d59f5a4ca102//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/31/3112ed9799124edf4d1f9c903da0d59f5a4ca102//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-16 15:14 [binutils-gdb] [binutils][arm] PR25376 Change MVE into a CORE_HIGH feature gdb-buildbot
@ 2020-01-16 15:33 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-16 15:33 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/1730
Author:
Andre Vieira <andre.simoesdiasvieira@arm.com>
Commit tested:
2da2eaf4ce299c84c5a1f1bc6f7944266cb36d6e
Subject of commit:
[binutils][arm] PR25376 Change MVE into a CORE_HIGH feature
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2d/2da2eaf4ce299c84c5a1f1bc6f7944266cb36d6e/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/2d/2da2eaf4ce299c84c5a1f1bc6f7944266cb36d6e//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/2d/2da2eaf4ce299c84c5a1f1bc6f7944266cb36d6e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-16 10:31 [binutils-gdb] x86: add a few more missing VexWIG gdb-buildbot
@ 2020-01-16 10:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-16 10:44 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/1728
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
9cf70a448bed3f91fadc0e89ab0f4e5c0d79d975
Subject of commit:
x86: add a few more missing VexWIG
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9c/9cf70a448bed3f91fadc0e89ab0f4e5c0d79d975/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/async.exp: thread 3: could not run to all_started
==============================================
*** 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/9c/9cf70a448bed3f91fadc0e89ab0f4e5c0d79d975//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/9c/9cf70a448bed3f91fadc0e89ab0f4e5c0d79d975//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-16 9:59 [binutils-gdb] x86: VPEXTRQ/VPINSRQ are unavailable outside of 64-bit mode gdb-buildbot
@ 2020-01-16 9:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-16 9:31 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/1727
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
4814632e69636177b71b8d091009a0ec614916ec
Subject of commit:
x86: VPEXTRQ/VPINSRQ are unavailable outside of 64-bit mode
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/48/4814632e69636177b71b8d091009a0ec614916ec/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/48/4814632e69636177b71b8d091009a0ec614916ec//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/48/4814632e69636177b71b8d091009a0ec614916ec//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-15 18:32 [binutils-gdb] Use get_thread_regcache instead of get_current_regcache in post_create_inferior gdb-buildbot
@ 2020-01-15 18:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-15 18:37 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/1725
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
8dc3273e0c50b607ee97873ae745cbc0d3ec6d7f
Subject of commit:
Use get_thread_regcache instead of get_current_regcache in post_create_inferior
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8d/8dc3273e0c50b607ee97873ae745cbc0d3ec6d7f/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================
*** 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/8d/8dc3273e0c50b607ee97873ae745cbc0d3ec6d7f//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/8d/8dc3273e0c50b607ee97873ae745cbc0d3ec6d7f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-15 15:44 [binutils-gdb] Set the default page size of the PDP11 target to 8192 bytes gdb-buildbot
@ 2020-01-15 15:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-15 15:57 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/1723
Author:
Lars Brinkhoff <lars@nocrew.org>
Commit tested:
0d1cc75df1c9a356dfa47932e9ec52fca7d8f5ab
Subject of commit:
Set the default page size of the PDP11 target to 8192 bytes.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0d/0d1cc75df1c9a356dfa47932e9ec52fca7d8f5ab/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/0d/0d1cc75df1c9a356dfa47932e9ec52fca7d8f5ab//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/0d/0d1cc75df1c9a356dfa47932e9ec52fca7d8f5ab//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-15 14:07 [binutils-gdb] MSP430: Fix relocation overflow when using #lo(EXP) macro gdb-buildbot
@ 2020-01-15 14:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-15 14:07 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/1721
Author:
Jozef Lawrynowicz <jozef.l@mittosystems.com>
Commit tested:
131cb553d6d10412b20cf49bb0e3a5e736a90a36
Subject of commit:
MSP430: Fix relocation overflow when using #lo(EXP) macro
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/13/131cb553d6d10412b20cf49bb0e3a5e736a90a36/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/report.exp: current target does not support trace
new UNRESOLVED: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/13/131cb553d6d10412b20cf49bb0e3a5e736a90a36//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/13/131cb553d6d10412b20cf49bb0e3a5e736a90a36//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-15 5:13 [binutils-gdb] PR25384, PowerPC64 ELFv1 copy relocs against function symbols gdb-buildbot
@ 2020-01-15 5:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-15 5:44 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/1720
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
e1c6cf618cbeebbafd34afc5ee921fcbf7061bfa
Subject of commit:
PR25384, PowerPC64 ELFv1 copy relocs against function symbols
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e1/e1c6cf618cbeebbafd34afc5ee921fcbf7061bfa/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/e1/e1c6cf618cbeebbafd34afc5ee921fcbf7061bfa//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/e1/e1c6cf618cbeebbafd34afc5ee921fcbf7061bfa//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-15 4:55 [binutils-gdb] Fix valgrind error from gdb.decode_line gdb-buildbot
@ 2020-01-15 4:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-15 4:53 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/1719
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
ff47f4f06d296b672337e2c7363a745cd2725f58
Subject of commit:
Fix valgrind error from gdb.decode_line
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ff/ff47f4f06d296b672337e2c7363a745cd2725f58/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/tfind.exp: could not read PC
==============================================
*** 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/ff/ff47f4f06d296b672337e2c7363a745cd2725f58//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/ff/ff47f4f06d296b672337e2c7363a745cd2725f58//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-15 2:25 [binutils-gdb] Remove use of <config.h> from gdb/nat/ gdb-buildbot
@ 2020-01-15 2:23 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-15 2:23 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/1716
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
25e573565306c51df462eb6a957f86fc130ee580
Subject of commit:
Remove use of <config.h> from gdb/nat/
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/25/25e573565306c51df462eb6a957f86fc130ee580/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/25/25e573565306c51df462eb6a957f86fc130ee580//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/25/25e573565306c51df462eb6a957f86fc130ee580//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-15 0:50 [binutils-gdb] Consolidate definition of USE_WIN32API gdb-buildbot
@ 2020-01-15 0:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-15 0:40 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/1713
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
b2ceabe8f0c2056342834b2b3f52f3b015538df3
Subject of commit:
Consolidate definition of USE_WIN32API
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b2/b2ceabe8f0c2056342834b2b3f52f3b015538df3/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/async.exp: thread 2: delete all breakpoints in delete_breakpoints
==============================================
*** 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/b2/b2ceabe8f0c2056342834b2b3f52f3b015538df3//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/b2/b2ceabe8f0c2056342834b2b3f52f3b015538df3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-14 20:50 [binutils-gdb] Make skip without argument skip the current inline function gdb-buildbot
@ 2020-01-14 21:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-14 21: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/1711
Author:
Bernd Edlinger <bernd.edlinger@hotmail.de>
Commit tested:
717c684dd1afe36293a256aa2bce4b3af56402c5
Subject of commit:
Make skip without argument skip the current inline function
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/71/717c684dd1afe36293a256aa2bce4b3af56402c5/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/async.exp: thread 3: could not run to all_started
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 10: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/sigthread.exp: can't run to main
new UNRESOLVED: gdb.threads/sigthread.exp: delete all breakpoints in delete_breakpoints
==============================================
*** 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/71/717c684dd1afe36293a256aa2bce4b3af56402c5//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/71/717c684dd1afe36293a256aa2bce4b3af56402c5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-14 13:50 [binutils-gdb] Fix various assembler testsuite failures for the Z80 target gdb-buildbot
@ 2020-01-14 14:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-14 14:06 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/1709
Author:
Sergey Belyashov <sergey.belyashov@gmail.com>
Commit tested:
7a6bf3becbe3e0ce47d2681edcfe7adcb67fe4e2
Subject of commit:
Fix various assembler testsuite failures for the Z80 target.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7a/7a6bf3becbe3e0ce47d2681edcfe7adcb67fe4e2/
*** Diff to previous build ***
==============================================
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/7a/7a6bf3becbe3e0ce47d2681edcfe7adcb67fe4e2//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/7a/7a6bf3becbe3e0ce47d2681edcfe7adcb67fe4e2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-14 9:29 [binutils-gdb] ubsan: alpha-vms: segv gdb-buildbot
@ 2020-01-14 9:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-14 9:18 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/1707
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
8ab484c23b9f3533fcd942e95887383786331f06
Subject of commit:
ubsan: alpha-vms: segv
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8a/8ab484c23b9f3533fcd942e95887383786331f06/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=1: detach_on_fork=on: displaced=off: 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-native-extended-gdbserver-m64/8a/8ab484c23b9f3533fcd942e95887383786331f06//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/8a/8ab484c23b9f3533fcd942e95887383786331f06//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-14 9:03 [binutils-gdb] ubsan: z8k: left shift cannot be represented in type 'int' gdb-buildbot
@ 2020-01-14 9:03 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-14 9:03 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/1706
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
ca1eaac0edd9f5f6b5708dcfd04e5b8deb6527f8
Subject of commit:
ubsan: z8k: left shift cannot be represented in type 'int'
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ca/ca1eaac0edd9f5f6b5708dcfd04e5b8deb6527f8/
*** Diff to previous build ***
==============================================
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/ca/ca1eaac0edd9f5f6b5708dcfd04e5b8deb6527f8//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/ca/ca1eaac0edd9f5f6b5708dcfd04e5b8deb6527f8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-14 6:48 [binutils-gdb] gdb/testsuite: Allow DWARF assembler to create multiple line tables gdb-buildbot
@ 2020-01-14 6:57 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-14 6:57 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/1704
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
d93c6db74b7a9d6154f55f92d96f38819838bc99
Subject of commit:
gdb/testsuite: Allow DWARF assembler to create multiple line tables
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d9/d93c6db74b7a9d6154f55f92d96f38819838bc99/
*** Diff to previous build ***
==============================================
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/d9/d93c6db74b7a9d6154f55f92d96f38819838bc99//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/d9/d93c6db74b7a9d6154f55f92d96f38819838bc99//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-14 6:19 [binutils-gdb] Dwarf 5: Handle debug_str_offsets and indexed attributes that have base offsets gdb-buildbot
@ 2020-01-14 6:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-14 6:08 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/1703
Author:
Ali Tamur <tamur@google.com>
Commit tested:
18a8505e38fc2de4b0730b6e13cbd23db5984de9
Subject of commit:
Dwarf 5: Handle debug_str_offsets and indexed attributes that have base offsets.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/18/18a8505e38fc2de4b0730b6e13cbd23db5984de9/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/label.exp: label tests suppressed
new FAIL: gdb.trace/mi-trace-unavailable.exp: continuing to marker
==============================================
*** 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/18/18a8505e38fc2de4b0730b6e13cbd23db5984de9//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/18/18a8505e38fc2de4b0730b6e13cbd23db5984de9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-14 4:21 [binutils-gdb] gdb/tui: Place window titles in the center of the border gdb-buildbot
@ 2020-01-14 4:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-14 4:32 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/1701
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
9a6d629ccf328e3f041c3fcb7e91f49a5d72d0fb
Subject of commit:
gdb/tui: Place window titles in the center of the border
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9a/9a6d629ccf328e3f041c3fcb7e91f49a5d72d0fb/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 9: delete all breakpoints in delete_breakpoints
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/9a/9a6d629ccf328e3f041c3fcb7e91f49a5d72d0fb//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/9a/9a6d629ccf328e3f041c3fcb7e91f49a5d72d0fb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-14 3:13 [binutils-gdb] gdb: use std::vector instead of alloca in core_target::get_core_register_section gdb-buildbot
@ 2020-01-14 3:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-14 3:55 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/1700
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
d8b2f9e3330ae76e33679c2628a6196542f329ca
Subject of commit:
gdb: use std::vector instead of alloca in core_target::get_core_register_section
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d8/d8b2f9e3330ae76e33679c2628a6196542f329ca/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/ftrace-lock.exp: can't run to main to check for trace support
==============================================
*** 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/d8/d8b2f9e3330ae76e33679c2628a6196542f329ca//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/d8/d8b2f9e3330ae76e33679c2628a6196542f329ca//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-14 2:01 [binutils-gdb] Enable -Wmissing-declarations diagnostic gdb-buildbot
@ 2020-01-14 2:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-14 2:02 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/1698
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
bb564c588d95608ff87067cb05db910cf38dc2d3
Subject of commit:
Enable -Wmissing-declarations diagnostic
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bb/bb564c588d95608ff87067cb05db910cf38dc2d3/
*** Diff to previous build ***
==============================================
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/bb/bb564c588d95608ff87067cb05db910cf38dc2d3//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/bb/bb564c588d95608ff87067cb05db910cf38dc2d3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-14 0:25 [binutils-gdb] gdbserver: make some functions static in linux-x86-low.c gdb-buildbot
@ 2020-01-14 0:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-14 0:37 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/1696
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
df4a0200dc896abe32bef4172ca047465caaedfe
Subject of commit:
gdbserver: make some functions static in linux-x86-low.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/df/df4a0200dc896abe32bef4172ca047465caaedfe/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
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/df/df4a0200dc896abe32bef4172ca047465caaedfe//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/df/df4a0200dc896abe32bef4172ca047465caaedfe//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 23:37 [binutils-gdb] gdbserver: include gdbsupport/common-inferior.h in inferiors.c gdb-buildbot
@ 2020-01-13 23:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 23:41 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/1695
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
89e94ec9af58bfab38d469fe42c3eaf2aeb35e31
Subject of commit:
gdbserver: include gdbsupport/common-inferior.h in inferiors.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/89/89e94ec9af58bfab38d469fe42c3eaf2aeb35e31/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/async.exp: thread 3: could not run to all_started
new UNRESOLVED: gdb.threads/bp_in_thread.exp: delete all breakpoints in delete_breakpoints
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/89/89e94ec9af58bfab38d469fe42c3eaf2aeb35e31//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/89/89e94ec9af58bfab38d469fe42c3eaf2aeb35e31//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 22:38 [binutils-gdb] gdbserver: include hostio.h in hostio-errno.c gdb-buildbot
@ 2020-01-13 23:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 23:13 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/1694
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
2552728af832542a1760c0ea8e9107635188eba2
Subject of commit:
gdbserver: include hostio.h in hostio-errno.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/25/2552728af832542a1760c0ea8e9107635188eba2/
*** 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/25/2552728af832542a1760c0ea8e9107635188eba2//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/25/2552728af832542a1760c0ea8e9107635188eba2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 22:09 [binutils-gdb] gdb: add declaration to Python init function gdb-buildbot
@ 2020-01-13 22:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 22:18 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/1693
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
6b3661116e7b01676299710a96f47fe06bafacec
Subject of commit:
gdb: add declaration to Python init function
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6b/6b3661116e7b01676299710a96f47fe06bafacec/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: can't run to main
new UNRESOLVED: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: delete all breakpoints in delete_breakpoints
==============================================
*** 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/6b/6b3661116e7b01676299710a96f47fe06bafacec//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/6b/6b3661116e7b01676299710a96f47fe06bafacec//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 21:12 [binutils-gdb] gdb: add back declarations for _initialize functions gdb-buildbot
@ 2020-01-13 21:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 21:27 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/1692
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
6c2659886f7018fcca26ee0fc813bc9748fb8513
Subject of commit:
gdb: add back declarations for _initialize functions
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/6c/6c2659886f7018fcca26ee0fc813bc9748fb8513/
*** Diff to previous build ***
==============================================
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
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
new FAIL: gdb.trace/collection.exp: print /x $pc
new FAIL: gdb.trace/collection.exp: print /x $sp
new FAIL: gdb.trace/collection.exp: print /x $x29
new UNRESOLVED: gdb.trace/ftrace.exp: can't run to main for ftrace tests
==============================================
*** 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/6c/6c2659886f7018fcca26ee0fc813bc9748fb8513//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/6c/6c2659886f7018fcca26ee0fc813bc9748fb8513//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 20:11 [binutils-gdb] gdb: make regformats output a declaration for the init function gdb-buildbot
@ 2020-01-13 20:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 20:42 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/1691
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
e2de1eec22358c64510dc18e755d0ff4cf91ad7a
Subject of commit:
gdb: make regformats output a declaration for the init function
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e2/e2de1eec22358c64510dc18e755d0ff4cf91ad7a/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: can't run to main
PASS -> UNRESOLVED: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: set breakpoint always-inserted off
PASS -> UNRESOLVED: gdb.dwarf2/dw2-var-zero-addr.exp: readnow: print &var
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/e2/e2de1eec22358c64510dc18e755d0ff4cf91ad7a//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/e2/e2de1eec22358c64510dc18e755d0ff4cf91ad7a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 16:33 [binutils-gdb] gdb: adjust remote-sim.c to multi-target gdb-buildbot
@ 2020-01-13 16:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 16:40 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/1689
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
e0037b4cc727274248aebc11543f2ea3a711dacb
Subject of commit:
gdb: adjust remote-sim.c to multi-target
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e0/e0037b4cc727274248aebc11543f2ea3a711dacb/
*** Diff to previous build ***
==============================================
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/e0/e0037b4cc727274248aebc11543f2ea3a711dacb//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/e0/e0037b4cc727274248aebc11543f2ea3a711dacb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 10:12 [binutils-gdb] [ARC][committed] Update ARC cpu list gdb-buildbot
@ 2020-01-13 10:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 10:56 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/1686
Author:
Claudiu Zissulescu <claziss@gmail.com>
Commit tested:
39fe16e0780ac85a8907e9ad9a38b88066674b03
Subject of commit:
[ARC][committed] Update ARC cpu list
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/39/39fe16e0780ac85a8907e9ad9a38b88066674b03/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/39/39fe16e0780ac85a8907e9ad9a38b88066674b03//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/39/39fe16e0780ac85a8907e9ad9a38b88066674b03//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 8:51 [binutils-gdb] asan: ns32k: wild memory write gdb-buildbot
@ 2020-01-13 8:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 8:46 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/1684
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
90dee485e5a5cf5eb51491feb8ebea1fcbf5d4cc
Subject of commit:
asan: ns32k: wild memory write
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/90/90dee485e5a5cf5eb51491feb8ebea1fcbf5d4cc/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/async.exp: thread 2: delete all breakpoints in delete_breakpoints
==============================================
*** 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/90/90dee485e5a5cf5eb51491feb8ebea1fcbf5d4cc//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/90/90dee485e5a5cf5eb51491feb8ebea1fcbf5d4cc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 8:19 [binutils-gdb] ubsan: wasm32: signed integer overflow gdb-buildbot
@ 2020-01-13 8:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 8:04 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/1683
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
febda64f152972d8edf0147fb29f89b02f6a4cf9
Subject of commit:
ubsan: wasm32: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fe/febda64f152972d8edf0147fb29f89b02f6a4cf9/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> UNRESOLVED: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
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 10: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
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: break break_fn
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints
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: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on
new FAIL: gdb.trace/while-dyn.exp: setting breakpoint at end
new UNRESOLVED: gdb.trace/while-dyn.exp: tstop
==============================================
*** 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/fe/febda64f152972d8edf0147fb29f89b02f6a4cf9//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/fe/febda64f152972d8edf0147fb29f89b02f6a4cf9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 7:15 [binutils-gdb] score formatting gdb-buildbot
@ 2020-01-13 7:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 7:13 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/1682
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
df08b5881b4972d78f9a2069955dad5b12bc972e
Subject of commit:
score formatting
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/df/df08b5881b4972d78f9a2069955dad5b12bc972e/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/attach-stopped.exp: nonthreaded: attach2 to stopped bt
PASS -> UNRESOLVED: gdb.threads/attach-stopped.exp: nonthreaded: attach2 to stopped, after setting file
new FAIL: gdb.threads/watchthreads2.exp: run to thread_started
==============================================
*** 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/df/df08b5881b4972d78f9a2069955dad5b12bc972e//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/df/df08b5881b4972d78f9a2069955dad5b12bc972e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 5:25 [binutils-gdb] Memory leaks and ineffective bounds checking in wasm_scan gdb-buildbot
@ 2020-01-13 5:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 5:25 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/1679
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
0c0adcc52478ebb707ed780173e18262df6eab7e
Subject of commit:
Memory leaks and ineffective bounds checking in wasm_scan
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0c/0c0adcc52478ebb707ed780173e18262df6eab7e/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/exec_changed.exp: start second
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
new UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
new UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
new FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
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/0c/0c0adcc52478ebb707ed780173e18262df6eab7e//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/0c/0c0adcc52478ebb707ed780173e18262df6eab7e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 3:42 [binutils-gdb] ubsan: fr30: left shift of negative value gdb-buildbot
@ 2020-01-13 3:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 3:42 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/1677
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
202e762b322444344827acbf98162fcb2910e0dd
Subject of commit:
ubsan: fr30: left shift of negative value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/20/202e762b322444344827acbf98162fcb2910e0dd/
*** 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/20/202e762b322444344827acbf98162fcb2910e0dd//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/20/202e762b322444344827acbf98162fcb2910e0dd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-13 2:40 [binutils-gdb] ubsan: xgate: left shift of negative value gdb-buildbot
@ 2020-01-13 2:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-13 2:31 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/1676
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
7ef412cf72a197d68e532604cc1fa21351adc858
Subject of commit:
ubsan: xgate: left shift of negative value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7e/7ef412cf72a197d68e532604cc1fa21351adc858/
*** Diff to previous build ***
==============================================
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/7e/7ef412cf72a197d68e532604cc1fa21351adc858//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/7e/7ef412cf72a197d68e532604cc1fa21351adc858//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-12 21:46 [binutils-gdb] gdb: include gdb_wait.h in gdb_wait.c gdb-buildbot
@ 2020-01-12 22:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-12 22:24 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/1675
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
58920b5be048726fca38e4e6ddcaa02ae6d9c1b8
Subject of commit:
gdb: include gdb_wait.h in gdb_wait.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/58/58920b5be048726fca38e4e6ddcaa02ae6d9c1b8/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/async.exp: thread 3: could not run to all_started
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/58/58920b5be048726fca38e4e6ddcaa02ae6d9c1b8//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/58/58920b5be048726fca38e4e6ddcaa02ae6d9c1b8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-12 17:27 [binutils-gdb] gdbserver: make aarch64_write_goto_address static gdb-buildbot
@ 2020-01-12 17:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-12 17:37 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/1673
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
bb1183e25ae74ba21500fb4e39bc1ca9822e3086
Subject of commit:
gdbserver: make aarch64_write_goto_address static
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bb/bb1183e25ae74ba21500fb4e39bc1ca9822e3086/
*** Diff to previous build ***
==============================================
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/bb/bb1183e25ae74ba21500fb4e39bc1ca9822e3086//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/bb/bb1183e25ae74ba21500fb4e39bc1ca9822e3086//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-12 17:11 [binutils-gdb] gdbserver: include aarch32/aarch64 header file in corresponding source file gdb-buildbot
@ 2020-01-12 17:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-12 17:02 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/1672
Author:
Simon Marchi <simon.marchi@polymtl.ca>
Commit tested:
f5df0b5f0874598790a60f1462f67887868bd77f
Subject of commit:
gdbserver: include aarch32/aarch64 header file in corresponding source file
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f5/f5df0b5f0874598790a60f1462f67887868bd77f/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/pending.exp: trace resolved_in_trace: can't run to main
new UNRESOLVED: gdb.trace/qtro.exp: can't run to main to check for trace support
==============================================
*** 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/f5/f5df0b5f0874598790a60f1462f67887868bd77f//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/f5/f5df0b5f0874598790a60f1462f67887868bd77f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 20:17 [binutils-gdb] Make TUI borders respect "set style enabled" gdb-buildbot
@ 2020-01-11 20:17 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 20:17 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/1668
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
7c392d1de1400202eb86f7679628c4b7c14f8108
Subject of commit:
Make TUI borders respect "set style enabled"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7c/7c392d1de1400202eb86f7679628c4b7c14f8108/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 9: delete all breakpoints in delete_breakpoints
==============================================
*** 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/7c/7c392d1de1400202eb86f7679628c4b7c14f8108//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/7c/7c392d1de1400202eb86f7679628c4b7c14f8108//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 17:37 [binutils-gdb] Switch the inferior before outputting its id in "info inferiors" gdb-buildbot
@ 2020-01-11 17:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 17:37 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/1667
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
d9ebdab754fac0e9a4e4046a550a3e89cf5c2699
Subject of commit:
Switch the inferior before outputting its id in "info inferiors"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d9/d9ebdab754fac0e9a4e4046a550a3e89cf5c2699/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
PASS -> UNRESOLVED: gdb.threads/killed.exp: GDB exits after multi-threaded program exits messily
==============================================
*** 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/d9/d9ebdab754fac0e9a4e4046a550a3e89cf5c2699//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/d9/d9ebdab754fac0e9a4e4046a550a3e89cf5c2699//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 16:52 [binutils-gdb] Switch the inferior too in switch_to_program_space_and_thread gdb-buildbot
@ 2020-01-11 16:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 16:52 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/1666
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
f3c469b95b9f1f635668660c5041df9513a47a02
Subject of commit:
Switch the inferior too in switch_to_program_space_and_thread
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f3/f3c469b95b9f1f635668660c5041df9513a47a02/
*** Diff to previous build ***
==============================================
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
==============================================
*** 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/f3/f3c469b95b9f1f635668660c5041df9513a47a02//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/f3/f3c469b95b9f1f635668660c5041df9513a47a02//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 16:01 [binutils-gdb] Multi-target: NEWS and user manual gdb-buildbot
@ 2020-01-11 16:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 16: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/1665
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
65c574f6dd066a239a94c2df0e1e12d50eae06c9
Subject of commit:
Multi-target: NEWS and user manual
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/65/65c574f6dd066a239a94c2df0e1e12d50eae06c9/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.trace/collection.exp: print /x $pc
new FAIL: gdb.trace/collection.exp: print /x $sp
new FAIL: gdb.trace/collection.exp: print /x $x29
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/65/65c574f6dd066a239a94c2df0e1e12d50eae06c9//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/65/65c574f6dd066a239a94c2df0e1e12d50eae06c9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 15:13 [binutils-gdb] Require always-non-stop for multi-target resumptions gdb-buildbot
@ 2020-01-11 15:13 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 15:13 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/1664
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
2f4fcf00399bc0ad5a4fed6b530128e8be4f40da
Subject of commit:
Require always-non-stop for multi-target resumptions
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2f/2f4fcf00399bc0ad5a4fed6b530128e8be4f40da/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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 4: attach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on
PASS -> UNRESOLVED: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on
PASS -> UNRESOLVED: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
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 -> FAIL: gdb.threads/killed.exp: GDB exits after multi-threaded program exits messily
PASS -> FAIL: gdb.threads/killed.exp: run program to completion
==============================================
*** 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/2f/2f4fcf00399bc0ad5a4fed6b530128e8be4f40da//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/2f/2f4fcf00399bc0ad5a4fed6b530128e8be4f40da//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 12:44 [binutils-gdb] gdbarch-selftests.c: No longer error out if debugging something gdb-buildbot
@ 2020-01-11 12:44 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 12:44 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/1661
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
f4ec508eaed65ad7555858498c1cbbf420bce90a
Subject of commit:
gdbarch-selftests.c: No longer error out if debugging something
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f4/f4ec508eaed65ad7555858498c1cbbf420bce90a/
*** Diff to previous build ***
==============================================
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
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/f4/f4ec508eaed65ad7555858498c1cbbf420bce90a//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/f4/f4ec508eaed65ad7555858498c1cbbf420bce90a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 11:37 [binutils-gdb] Add multi-target tests gdb-buildbot
@ 2020-01-11 11:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 11:54 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/1660
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
1dadb1dd718f93801bcca669a0fb38e3da6177b8
Subject of commit:
Add multi-target tests
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1d/1dadb1dd718f93801bcca669a0fb38e3da6177b8/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=on: couldn't run to all_started
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: single-process: detach: 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-native-extended-gdbserver-m64/1d/1dadb1dd718f93801bcca669a0fb38e3da6177b8//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/1d/1dadb1dd718f93801bcca669a0fb38e3da6177b8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 10:51 [binutils-gdb] Multi-target support gdb-buildbot
@ 2020-01-11 11:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 11:07 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/1659
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
5b6d1e4fa4fc6827c7b3f0e99ff120dfa14d65d2
Subject of commit:
Multi-target support
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5b/5b6d1e4fa4fc6827c7b3f0e99ff120dfa14d65d2/
*** 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/5b/5b6d1e4fa4fc6827c7b3f0e99ff120dfa14d65d2//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/5b/5b6d1e4fa4fc6827c7b3f0e99ff120dfa14d65d2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 10:20 [binutils-gdb] Fix reconnecting to a gdbserver already debugging multiple processes, II gdb-buildbot
@ 2020-01-11 10:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 10:20 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/1658
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
75c6c844d9df37761e0e834df057b89e41816e55
Subject of commit:
Fix reconnecting to a gdbserver already debugging multiple processes, II
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/75/75c6c844d9df37761e0e834df057b89e41816e55/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: can't run to main
new UNRESOLVED: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: delete all breakpoints in delete_breakpoints
==============================================
*** 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/75/75c6c844d9df37761e0e834df057b89e41816e55//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/75/75c6c844d9df37761e0e834df057b89e41816e55//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 9:31 [binutils-gdb] Fix reconnecting to a gdbserver already debugging multiple processes, I gdb-buildbot
@ 2020-01-11 9:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 9:31 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/1657
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
78f2c40a12179d26d3065c09f054b7e751b2732f
Subject of commit:
Fix reconnecting to a gdbserver already debugging multiple processes, I
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/78/78f2c40a12179d26d3065c09f054b7e751b2732f/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/gdb1555.exp: can't run to main
new UNRESOLVED: gdb.cp/no-libstdcxx-probe.exp: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of f1 on
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 7: attach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on
PASS -> UNRESOLVED: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on
PASS -> UNRESOLVED: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
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: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
==============================================
*** 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/78/78f2c40a12179d26d3065c09f054b7e751b2732f//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/78/78f2c40a12179d26d3065c09f054b7e751b2732f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 8:42 [binutils-gdb] Avoid another inferior_ptid reference in gdb/remote.c gdb-buildbot
@ 2020-01-11 8:42 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 8:42 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/1656
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
e7af6c702da7a77529afdeffbbe6e13639beb441
Subject of commit:
Avoid another inferior_ptid reference in gdb/remote.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e7/e7af6c702da7a77529afdeffbbe6e13639beb441/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: can't run to main
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: continue to marker 1
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 1
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with three locations
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with two locations - installed
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with two locations - pending
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tstop
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/e7/e7af6c702da7a77529afdeffbbe6e13639beb441//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/e7/e7af6c702da7a77529afdeffbbe6e13639beb441//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 7:38 [binutils-gdb] Tweak handling of remote errors in response to resumption packet gdb-buildbot
@ 2020-01-11 7:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 7:55 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/1655
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
31ba933ec6a14b1f7fdbd9ba51f759e2c0537b9d
Subject of commit:
Tweak handling of remote errors in response to resumption packet
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/31/31ba933ec6a14b1f7fdbd9ba51f759e2c0537b9d/
*** 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/31/31ba933ec6a14b1f7fdbd9ba51f759e2c0537b9d//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/31/31ba933ec6a14b1f7fdbd9ba51f759e2c0537b9d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 7:08 [binutils-gdb] Use all_non_exited_inferiors in infrun.c gdb-buildbot
@ 2020-01-11 7:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 7:08 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/1654
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
735fc2ca685b55bf1debbfcea6d2ab544e58a530
Subject of commit:
Use all_non_exited_inferiors in infrun.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/73/735fc2ca685b55bf1debbfcea6d2ab544e58a530/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/73/735fc2ca685b55bf1debbfcea6d2ab544e58a530//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/73/735fc2ca685b55bf1debbfcea6d2ab544e58a530//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 5:37 [binutils-gdb] Some get_last_target_status tweaks gdb-buildbot
@ 2020-01-11 5:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 5:37 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/1652
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
ab1ddbcf110a3f1ad45e3a346d2da98ffb833dec
Subject of commit:
Some get_last_target_status tweaks
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ab/ab1ddbcf110a3f1ad45e3a346d2da98ffb833dec/
*** Diff to previous build ***
==============================================
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
new FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
==============================================
*** 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/ab/ab1ddbcf110a3f1ad45e3a346d2da98ffb833dec//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/ab/ab1ddbcf110a3f1ad45e3a346d2da98ffb833dec//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 2:27 [binutils-gdb] Don't check target is running in remote_target::mourn_inferior gdb-buildbot
@ 2020-01-11 2:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 2:27 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/1648
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
ddf5db90a175756b3a5c39ee87d549d9f9d09d28
Subject of commit:
Don't check target is running in remote_target::mourn_inferior
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/dd/ddf5db90a175756b3a5c39ee87d549d9f9d09d28/
*** 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/dd/ddf5db90a175756b3a5c39ee87d549d9f9d09d28//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/dd/ddf5db90a175756b3a5c39ee87d549d9f9d09d28//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 1:17 [binutils-gdb] Make target_ops::has_execution take an 'inferior *' instead of a ptid_t gdb-buildbot
@ 2020-01-11 1:36 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 1:36 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/1647
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
5018ce90c1205d79f29adf954b0fd5e613d08430
Subject of commit:
Make target_ops::has_execution take an 'inferior *' instead of a ptid_t
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/50/5018ce90c1205d79f29adf954b0fd5e613d08430/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
==============================================
*** 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/50/5018ce90c1205d79f29adf954b0fd5e613d08430//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/50/5018ce90c1205d79f29adf954b0fd5e613d08430//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-11 0:47 [binutils-gdb] exceptions.c:print_flush: Remove obsolete check gdb-buildbot
@ 2020-01-11 0:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-11 0:47 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/1646
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
74375d182e992778ef8701278c02a742db6be77e
Subject of commit:
exceptions.c:print_flush: Remove obsolete check
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/74/74375d182e992778ef8701278c02a742db6be77e/
*** 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/74/74375d182e992778ef8701278c02a742db6be77e//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/74/74375d182e992778ef8701278c02a742db6be77e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 22:50 [binutils-gdb] Don't rely on inferior_ptid in record_full_wait gdb-buildbot
@ 2020-01-10 23:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 23:10 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/1644
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
ec506636cc0c56d4229b00d5e439c0610970f84d
Subject of commit:
Don't rely on inferior_ptid in record_full_wait
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ec/ec506636cc0c56d4229b00d5e439c0610970f84d/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/async.exp: thread 3: could not run to all_started
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
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/ec/ec506636cc0c56d4229b00d5e439c0610970f84d//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/ec/ec506636cc0c56d4229b00d5e439c0610970f84d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 22:03 [binutils-gdb] Preserve selected thread in all-stop w/ background execution gdb-buildbot
@ 2020-01-10 22:20 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 22:20 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/1643
Author:
Pedro Alves <palves@redhat.com>
Commit tested:
873657b9e824943ae44c12966c29cbbcd21c986f
Subject of commit:
Preserve selected thread in all-stop w/ background execution
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/87/873657b9e824943ae44c12966c29cbbcd21c986f/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/killed.exp: GDB exits after multi-threaded program exits messily
PASS -> FAIL: gdb.threads/killed.exp: run program to completion
new UNRESOLVED: gdb.threads/non-ldr-exc-3.exp: lock-sched=off,non-stop=on: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=on: no thread-specific bp: step: delete all breakpoints in delete_breakpoints
==============================================
*** 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/87/873657b9e824943ae44c12966c29cbbcd21c986f//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/87/873657b9e824943ae44c12966c29cbbcd21c986f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 20:29 [binutils-gdb] gdb/testsuite/gdb.base/stap-probe: Minor clean-up gdb-buildbot
@ 2020-01-10 20:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 20:29 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/1641
Author:
George Barrett <bob@bob131.so>
Commit tested:
47e9d49d2d795224f4b3f04c89c268627b850be4
Subject of commit:
gdb/testsuite/gdb.base/stap-probe: Minor clean-up
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/47/47e9d49d2d795224f4b3f04c89c268627b850be4/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/47/47e9d49d2d795224f4b3f04c89c268627b850be4//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/47/47e9d49d2d795224f4b3f04c89c268627b850be4//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 15:41 [binutils-gdb] [PR ld/22269] arm: Avoid dynamic relocs for undefweak symbols in static PIE gdb-buildbot
@ 2020-01-10 15:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 15:41 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/1640
Author:
Szabolcs Nagy <szabolcs.nagy@arm.com>
Commit tested:
7f02673206eaef00f240b84c21069b4e5fbe09ea
Subject of commit:
[PR ld/22269] arm: Avoid dynamic relocs for undefweak symbols in static PIE
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7f/7f02673206eaef00f240b84c21069b4e5fbe09ea/
*** Diff to previous build ***
==============================================
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
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/7f/7f02673206eaef00f240b84c21069b4e5fbe09ea//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/7f/7f02673206eaef00f240b84c21069b4e5fbe09ea//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 14:52 [binutils-gdb] AArch64: Revert setting of elf class in linker stub gdb-buildbot
@ 2020-01-10 14:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 14:52 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/1639
Author:
Tamar Christina <tamar.christina@arm.com>
Commit tested:
8cd0e5e93145699736a370b271ff03f3f41670b0
Subject of commit:
AArch64: Revert setting of elf class in linker stub.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8c/8cd0e5e93145699736a370b271ff03f3f41670b0/
*** 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/8c/8cd0e5e93145699736a370b271ff03f3f41670b0//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/8c/8cd0e5e93145699736a370b271ff03f3f41670b0//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 13:49 [binutils-gdb] ubsan: tilepro: signed integer overflow gdb-buildbot
@ 2020-01-10 14:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 14:06 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/1638
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
7f578b959c3d4b4a1756c66aec4426743b82c6b8
Subject of commit:
ubsan: tilepro: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7f/7f578b959c3d4b4a1756c66aec4426743b82c6b8/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 10: delete all breakpoints in delete_breakpoints
==============================================
*** 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/7f/7f578b959c3d4b4a1756c66aec4426743b82c6b8//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/7f/7f578b959c3d4b4a1756c66aec4426743b82c6b8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 13:00 [binutils-gdb] ubsan: m10300: shift exponent -4 gdb-buildbot
@ 2020-01-10 13:19 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 13:19 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/1637
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
441af85bd9c68dbc0c2a1dbe23bf07c6cb3c3f5d
Subject of commit:
ubsan: m10300: shift exponent -4
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/44/441af85bd9c68dbc0c2a1dbe23bf07c6cb3c3f5d/
*** Diff to previous build ***
==============================================
new FAIL: gdb.tui/basic.exp: check main is where we expect on the screen
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/44/441af85bd9c68dbc0c2a1dbe23bf07c6cb3c3f5d//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/44/441af85bd9c68dbc0c2a1dbe23bf07c6cb3c3f5d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 12:14 [binutils-gdb] ubsan: spu: left shift of negative value gdb-buildbot
@ 2020-01-10 12:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 12:31 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/1636
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
8948cc6971fb82feffc49e2d21747111466ad642
Subject of commit:
ubsan: spu: left shift of negative value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/89/8948cc6971fb82feffc49e2d21747111466ad642/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
==============================================
*** 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/89/8948cc6971fb82feffc49e2d21747111466ad642//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/89/8948cc6971fb82feffc49e2d21747111466ad642//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
@ 2020-01-10 11:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 11:46 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/1635
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
71780f455fbf35ed4c48e94b4228c55c11a213c8
Subject of commit:
ubsan: alpha-coff: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> UNRESOLVED: gdb.dwarf2/missing-type-name.exp: ptype of a pointer to a basic type with missing name
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 10: delete all breakpoints in delete_breakpoints
==============================================
*** 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/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//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/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
@ 2020-01-10 4:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 4:22 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/1633
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
9ae6bf640dc7c950e6f36097a3d2d760a132a542
Subject of commit:
gdb: Fix scrolling in TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//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/9a/9ae6bf640dc7c950e6f36097a3d2d760a132a542//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 2:27 [binutils-gdb] gdb/testsuite/tui: Introduce check_box_contents gdb-buildbot
@ 2020-01-10 2:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 2:46 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/1631
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
3804da7e07a13c14210d79de55ebfe2318421164
Subject of commit:
gdb/testsuite/tui: Introduce check_box_contents
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/38/3804da7e07a13c14210d79de55ebfe2318421164/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
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/38/3804da7e07a13c14210d79de55ebfe2318421164//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/38/3804da7e07a13c14210d79de55ebfe2318421164//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 1:41 [binutils-gdb] gdb/testsuite/tui: Split enter_tui into two procs gdb-buildbot
@ 2020-01-10 1:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 1:58 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/1630
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
b40aa28fb5de5e84bd3409f54138def0ba904a9a
Subject of commit:
gdb/testsuite/tui: Split enter_tui into two procs
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b4/b40aa28fb5de5e84bd3409f54138def0ba904a9a/
*** 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/b4/b40aa28fb5de5e84bd3409f54138def0ba904a9a//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/b4/b40aa28fb5de5e84bd3409f54138def0ba904a9a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-09 23:56 [binutils-gdb] gdb/testsuite: Fix race condition in gdb.base/skip.exp gdb-buildbot
@ 2020-01-10 0:16 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-10 0:16 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/1628
Author:
Andrew Burgess <andrew.burgess@embecosm.com>
Commit tested:
3be966f69d6967d2857baa3efb0bc043081e0a00
Subject of commit:
gdb/testsuite: Fix race condition in gdb.base/skip.exp
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/3b/3be966f69d6967d2857baa3efb0bc043081e0a00/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 10: delete all breakpoints in delete_breakpoints
==============================================
*** 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/3b/3be966f69d6967d2857baa3efb0bc043081e0a00//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/3b/3be966f69d6967d2857baa3efb0bc043081e0a00//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-09 22:32 [binutils-gdb] Fix indentation in print_thread_info_1 gdb-buildbot
@ 2020-01-09 22:37 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-09 22:37 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/1626
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
3061113bf336048d538241282c39baf684de31bf
Subject of commit:
Fix indentation in print_thread_info_1
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/30/3061113bf336048d538241282c39baf684de31bf/
*** Diff to previous build ***
==============================================
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/30/3061113bf336048d538241282c39baf684de31bf//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/30/3061113bf336048d538241282c39baf684de31bf//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-09 19:30 [binutils-gdb] Fix memory leak of the demangled symbol name gdb-buildbot
@ 2020-01-09 19:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-09 19:46 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/1625
Author:
Christian Biesinger <cbiesinger@google.com>
Commit tested:
57d750026550cf3a589e3f28a0cdc303ba5ed039
Subject of commit:
Fix memory leak of the demangled symbol name
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/57/57d750026550cf3a589e3f28a0cdc303ba5ed039/
*** Diff to previous build ***
==============================================
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new UNRESOLVED: gdb.trace/pending.exp: trace resolved_in_trace: can't run to main
new UNRESOLVED: gdb.trace/qtro.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.trace/qtro.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/57/57d750026550cf3a589e3f28a0cdc303ba5ed039//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/57/57d750026550cf3a589e3f28a0cdc303ba5ed039//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-09 16:12 [binutils-gdb] Fix an illegal memory access triggered when trying to examine an input file containing corrupt compressed sections gdb-buildbot
@ 2020-01-09 16:12 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-09 16:12 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/1624
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
b899eb3bb807be1094fde9a2f1c8628232bc0743
Subject of commit:
Fix an illegal memory access triggered when trying to examine an input file containing corrupt compressed sections.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b8/b899eb3bb807be1094fde9a2f1c8628232bc0743/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 6: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/watchthreads2.exp: can't run to main
new UNRESOLVED: gdb.threads/watchthreads2.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/watchthreads2.exp: set can-use-hw-watchpoints 1
==============================================
*** 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/b8/b899eb3bb807be1094fde9a2f1c8628232bc0743//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/b8/b899eb3bb807be1094fde9a2f1c8628232bc0743//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-09 14:59 [binutils-gdb] Fix the cast used to prevent compile time warning about an always false test gdb-buildbot
@ 2020-01-09 15:18 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-09 15:18 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/1623
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
bce58db4fb1112529a54387c7fdaa1042859f5fb
Subject of commit:
Fix the cast used to prevent compile time warning about an always false test.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bc/bce58db4fb1112529a54387c7fdaa1042859f5fb/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.base/readline-ask.exp: bell for more message
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : shell sleep 1
PASS -> UNRESOLVED: gdb.base/symbol-without-target_section.exp: list main
PASS -> UNRESOLVED: gdb.base/symbol-without-target_section.exp: print symbol_without_target_section
PASS -> UNRESOLVED: gdb.dwarf2/dw2-icc-opaque.exp: ptype p_struct
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 9: delete all breakpoints in delete_breakpoints
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/bc/bce58db4fb1112529a54387c7fdaa1042859f5fb//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/bc/bce58db4fb1112529a54387c7fdaa1042859f5fb//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-02 14:31 [binutils-gdb] AArch64: Set the correct ELF class for AArch64 stubs (PR/25210) gdb-buildbot
@ 2020-01-02 14:31 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-02 14:31 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/1567
Author:
Tamar Christina <tamar.christina@arm.com>
Commit tested:
0db131fb835e4c4f6a024e86743467e7e01c965e
Subject of commit:
AArch64: Set the correct ELF class for AArch64 stubs (PR/25210)
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0d/0db131fb835e4c4f6a024e86743467e7e01c965e/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/infotrace.exp: 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-native-extended-gdbserver-m64/0d/0db131fb835e4c4f6a024e86743467e7e01c965e//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/0d/0db131fb835e4c4f6a024e86743467e7e01c965e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-02 12:27 [binutils-gdb] Enable building the s12z target on Solaris hosts where REG_Y is defined in system header files gdb-buildbot
@ 2020-01-02 12:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-02 12:27 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/1566
Author:
Nick Clifton <nickc@redhat.com>
Commit tested:
d73b58f4b1f193d2e58c0a1774e01561b16866b9
Subject of commit:
Enable building the s12z target on Solaris hosts where REG_Y is defined in system header files.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d7/d73b58f4b1f193d2e58c0a1774e01561b16866b9/
*** 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/d7/d73b58f4b1f193d2e58c0a1774e01561b16866b9//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/d7/d73b58f4b1f193d2e58c0a1774e01561b16866b9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-01 21:02 [binutils-gdb] Add myself to gdb/MAINTAINERS gdb-buildbot
@ 2020-01-01 21:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-01 21:02 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/1564
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
ead1063b4bff6895f822ec0be6e9ec390ca103e3
Subject of commit:
Add myself to gdb/MAINTAINERS
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ea/ead1063b4bff6895f822ec0be6e9ec390ca103e3/
*** Diff to previous build ***
==============================================
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/ea/ead1063b4bff6895f822ec0be6e9ec390ca103e3//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/ea/ead1063b4bff6895f822ec0be6e9ec390ca103e3//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-01 10:39 [binutils-gdb] Update copyright year in gdbarch.sh doc/gdb.texinfo and doc/refcard.tex gdb-buildbot
@ 2020-01-01 10:59 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-01 10:59 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/1562
Author:
Joel Brobecker <brobecker@adacore.com>
Commit tested:
e5d78223eaf178ebb23aa20f209f71497aaae722
Subject of commit:
Update copyright year in gdbarch.sh doc/gdb.texinfo and doc/refcard.tex
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e5/e5d78223eaf178ebb23aa20f209f71497aaae722/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/e5/e5d78223eaf178ebb23aa20f209f71497aaae722//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/e5/e5d78223eaf178ebb23aa20f209f71497aaae722//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-01 10:12 [binutils-gdb] Update copyright year range in all GDB files gdb-buildbot
@ 2020-01-01 10:10 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-01 10:10 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/1561
Author:
Joel Brobecker <brobecker@adacore.com>
Commit tested:
b811d2c2920ddcb1adcd438da38e90912b31f45f
Subject of commit:
Update copyright year range in all GDB files.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/b8/b811d2c2920ddcb1adcd438da38e90912b31f45f/
*** Diff to previous build ***
==============================================
UNRESOLVED -> KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
new FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
==============================================
*** 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/b8/b811d2c2920ddcb1adcd438da38e90912b31f45f//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/b8/b811d2c2920ddcb1adcd438da38e90912b31f45f//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-01 9:06 [binutils-gdb] gdb/copyright.py: Convert to Python 3 gdb-buildbot
@ 2020-01-01 9:25 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-01 9:25 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/1560
Author:
Joel Brobecker <brobecker@adacore.com>
Commit tested:
5f4def5cbd12e77075f64a6854fb002f34be8a01
Subject of commit:
gdb/copyright.py: Convert to Python 3
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5f/5f4def5cbd12e77075f64a6854fb002f34be8a01/
*** Diff to previous build ***
==============================================
KPASS -> UNRESOLVED: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
PASS -> UNRESOLVED: gdb.dwarf2/corrupt.exp: recover from corrupt DWARF
==============================================
*** 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/5f/5f4def5cbd12e77075f64a6854fb002f34be8a01//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/5f/5f4def5cbd12e77075f64a6854fb002f34be8a01//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-01 7:46 [binutils-gdb] gdb/copyright.py: Exit if run from the wrong directory gdb-buildbot
@ 2020-01-01 7:46 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-01 7:46 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/1558
Author:
Joel Brobecker <brobecker@adacore.com>
Commit tested:
5fb651f2ddd54a1d3da6fcd172d9fab81893bbf9
Subject of commit:
gdb/copyright.py: Exit if run from the wrong directory
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5f/5fb651f2ddd54a1d3da6fcd172d9fab81893bbf9/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/5f/5fb651f2ddd54a1d3da6fcd172d9fab81893bbf9//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/5f/5fb651f2ddd54a1d3da6fcd172d9fab81893bbf9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-01 6:43 [binutils-gdb] update copyright year in version output of gdb, gdbserver and gdbreplay gdb-buildbot
@ 2020-01-01 6:43 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2020-01-01 6:43 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/1557
Author:
Joel Brobecker <brobecker@adacore.com>
Commit tested:
5dd8bf886a3f7535e0ad8b5218275efcf2cfff31
Subject of commit:
update copyright year in version output of gdb, gdbserver and gdbreplay
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5d/5dd8bf886a3f7535e0ad8b5218275efcf2cfff31/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/ftrace.exp: can't run to main for ftrace tests
==============================================
*** 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/5d/5dd8bf886a3f7535e0ad8b5218275efcf2cfff31//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/5d/5dd8bf886a3f7535e0ad8b5218275efcf2cfff31//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-31 13:40 [binutils-gdb] asan: alpha-vms: Heap-buffer-overflow gdb-buildbot
@ 2019-12-31 13:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-31 13:22 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/1555
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
bf31e6044082986689e17af54e2ca3cc1ac8419b
Subject of commit:
asan: alpha-vms: Heap-buffer-overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bf/bf31e6044082986689e17af54e2ca3cc1ac8419b/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/bf/bf31e6044082986689e17af54e2ca3cc1ac8419b//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/bf/bf31e6044082986689e17af54e2ca3cc1ac8419b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-30 16:47 [binutils-gdb] Use "bool" in more spots in TUI gdb-buildbot
@ 2019-12-30 16:33 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-30 16:33 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/1553
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
87d557ae1b944a21c86e3148daadeb4469b8cda9
Subject of commit:
Use "bool" in more spots in TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/87/87d557ae1b944a21c86e3148daadeb4469b8cda9/
*** 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/87/87d557ae1b944a21c86e3148daadeb4469b8cda9//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/87/87d557ae1b944a21c86e3148daadeb4469b8cda9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-30 14:29 [binutils-gdb] vms-alpha.c object_p memory leaks gdb-buildbot
@ 2019-12-30 14:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-30 14:39 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/1552
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
a7ac9aa525de25d3bc6e7bfd37615092a4f94055
Subject of commit:
vms-alpha.c object_p memory leaks
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a7/a7ac9aa525de25d3bc6e7bfd37615092a4f94055/
*** Diff to previous build ***
==============================================
new FAIL: gdb.threads/queue-signal.exp: determine thread functions
==============================================
*** 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/a7/a7ac9aa525de25d3bc6e7bfd37615092a4f94055//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/a7/a7ac9aa525de25d3bc6e7bfd37615092a4f94055//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-30 13:41 [binutils-gdb] coff object_p memory leaks gdb-buildbot
@ 2019-12-30 13:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-30 13:53 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/1551
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
37d5ab199b072e3cf1e8bf2a9262767c4737d256
Subject of commit:
coff object_p memory leaks
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/37/37d5ab199b072e3cf1e8bf2a9262767c4737d256/
*** 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/37/37d5ab199b072e3cf1e8bf2a9262767c4737d256//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/37/37d5ab199b072e3cf1e8bf2a9262767c4737d256//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-29 23:41 [binutils-gdb] Re: Usage of unitialized heap in tic4x_print_cond gdb-buildbot
@ 2019-12-29 23:41 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-29 23:41 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/1549
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
2c5b6e1a1c406cbe06e2d6f77861764ebd01b9ce
Subject of commit:
Re: Usage of unitialized heap in tic4x_print_cond
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2c/2c5b6e1a1c406cbe06e2d6f77861764ebd01b9ce/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 9: delete all breakpoints in delete_breakpoints
==============================================
*** 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/2c/2c5b6e1a1c406cbe06e2d6f77861764ebd01b9ce//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/2c/2c5b6e1a1c406cbe06e2d6f77861764ebd01b9ce//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-29 22:10 [binutils-gdb] Fix setting breakpoints or stepping on line 65535 gdb-buildbot
@ 2019-12-29 21:58 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-29 21:58 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/1548
Author:
Bernd Edlinger <bernd.edlinger@hotmail.de>
Commit tested:
c296cbe681815593eb57033368ac1b20b7a67252
Subject of commit:
Fix setting breakpoints or stepping on line 65535
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c2/c296cbe681815593eb57033368ac1b20b7a67252/
*** Diff to previous build ***
==============================================
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/c2/c296cbe681815593eb57033368ac1b20b7a67252//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/c2/c296cbe681815593eb57033368ac1b20b7a67252//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-29 15:17 [binutils-gdb] Usage of unitialized heap in tic4x_print_cond gdb-buildbot
@ 2019-12-29 15:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-29 15: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/1546
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
8c5e259235a4e4546910245b170de1e29a711034
Subject of commit:
Usage of unitialized heap in tic4x_print_cond
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8c/8c5e259235a4e4546910245b170de1e29a711034/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.trace/pending.exp: ftrace action_resolved: can't run to main
new FAIL: gdb.trace/pending.exp: ftrace disconn_resolved: 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-native-extended-gdbserver-m64/8c/8c5e259235a4e4546910245b170de1e29a711034//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/8c/8c5e259235a4e4546910245b170de1e29a711034//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-29 14:29 [binutils-gdb] ubsan: alpha-vms: shift exponent is too large gdb-buildbot
@ 2019-12-29 14:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-29 14:54 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/1545
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
401e101e0274d401e90e50cd8280a9ff36006477
Subject of commit:
ubsan: alpha-vms: shift exponent is too large
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/40/401e101e0274d401e90e50cd8280a9ff36006477/
*** Diff to previous build ***
==============================================
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/40/401e101e0274d401e90e50cd8280a9ff36006477//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/40/401e101e0274d401e90e50cd8280a9ff36006477//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-29 13:56 [binutils-gdb] asan: alpha-vms: memory leaks gdb-buildbot
@ 2019-12-29 13:56 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-29 13:56 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/1544
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
37d2e9c7b10e298403640fdd38a50fedae8525b2
Subject of commit:
asan: alpha-vms: memory leaks
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/37/37d2e9c7b10e298403640fdd38a50fedae8525b2/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/thread-specific.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/thread-specific.exp: setting breakpoint at 39
==============================================
*** 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/37/37d2e9c7b10e298403640fdd38a50fedae8525b2//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/37/37d2e9c7b10e298403640fdd38a50fedae8525b2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-29 12:17 [binutils-gdb] PR15350, Fix compressed debug sections for PE targets gdb-buildbot
@ 2019-12-29 12:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-29 12:04 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/1542
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
a6e5765ff1c5fdebaf4953eed619a717178cc7e6
Subject of commit:
PR15350, Fix compressed debug sections for PE targets
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//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/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-27 19:40 [binutils-gdb] Remove dead code from TUI gdb-buildbot
@ 2019-12-27 19:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-27 19:52 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/1538
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
ace206a5a5d86d8427607fd1af484689c0b23eaf
Subject of commit:
Remove dead code from TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/ac/ace206a5a5d86d8427607fd1af484689c0b23eaf/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 10: delete all breakpoints in delete_breakpoints
==============================================
*** 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/ac/ace206a5a5d86d8427607fd1af484689c0b23eaf//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/ac/ace206a5a5d86d8427607fd1af484689c0b23eaf//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-27 19:09 [binutils-gdb] Reorder an "if" in print_disassembly gdb-buildbot
@ 2019-12-27 19:00 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-27 19:00 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/1537
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
f9ba974dea317eae6e7032b52b52314cbe43f9d8
Subject of commit:
Reorder an "if" in print_disassembly
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f9/f9ba974dea317eae6e7032b52b52314cbe43f9d8/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/signal-delivered-right-thread.exp: signal 0: delete all breakpoints in delete_breakpoints
==============================================
*** 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/f9/f9ba974dea317eae6e7032b52b52314cbe43f9d8//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/f9/f9ba974dea317eae6e7032b52b52314cbe43f9d8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-27 18:10 [binutils-gdb] Change tui_active to bool gdb-buildbot
@ 2019-12-27 18:15 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-27 18:15 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/1536
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
a1e4dee4350dec57393bec8944762c9848ee6049
Subject of commit:
Change tui_active to bool
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a1/a1e4dee4350dec57393bec8944762c9848ee6049/
*** 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-extended-gdbserver-m64/a1/a1e4dee4350dec57393bec8944762c9848ee6049//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/a1/a1e4dee4350dec57393bec8944762c9848ee6049//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-27 10:16 [binutils-gdb] x86-64: fix Intel64 handling of branch with data16 prefix gdb-buildbot
@ 2019-12-27 10:27 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-27 10:27 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/1534
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
376cd056100dff2d6fc842aa013d0bbffdef363d
Subject of commit:
x86-64: fix Intel64 handling of branch with data16 prefix
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/37/376cd056100dff2d6fc842aa013d0bbffdef363d/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 6: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/watchthreads2.exp: can't run to main
new UNRESOLVED: gdb.threads/watchthreads2.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/watchthreads2.exp: set can-use-hw-watchpoints 1
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/37/376cd056100dff2d6fc842aa013d0bbffdef363d//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/37/376cd056100dff2d6fc842aa013d0bbffdef363d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-27 9:11 [binutils-gdb] x86: consolidate Disp<NN> handling a little gdb-buildbot
@ 2019-12-27 9:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-27 9:05 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/1533
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
48bcea9f48cce70005307befbc604de3618bbaf7
Subject of commit:
x86: consolidate Disp<NN> handling a little
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/48/48bcea9f48cce70005307befbc604de3618bbaf7/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 7: delete all breakpoints in delete_breakpoints
new FAIL: gdb.trace/pending.exp: ftrace disconn_resolved: 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-native-extended-gdbserver-m64/48/48bcea9f48cce70005307befbc604de3618bbaf7//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/48/48bcea9f48cce70005307befbc604de3618bbaf7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-26 22:45 [binutils-gdb] Add a NEWS entry for multithreaded symbol loading gdb-buildbot
@ 2019-12-26 22:51 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-26 22:51 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/1531
Author:
Christian Biesinger <cbiesinger@google.com>
Commit tested:
8fb75323313b095569200a400c07d2d7a887aa95
Subject of commit:
Add a NEWS entry for multithreaded symbol loading
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8f/8fb75323313b095569200a400c07d2d7a887aa95/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/signal-delivered-right-thread.exp: signal 0: delete all breakpoints in delete_breakpoints
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/8f/8fb75323313b095569200a400c07d2d7a887aa95//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/8f/8fb75323313b095569200a400c07d2d7a887aa95//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-26 9:40 [binutils-gdb] ubsan: crx: index 5 out of bounds for type 'operand_desc const[5]' gdb-buildbot
@ 2019-12-26 9:52 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-26 9:52 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/1530
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
100b122fc125bdf1fe768a3331a0cd413c3d1261
Subject of commit:
ubsan: crx: index 5 out of bounds for type 'operand_desc const[5]'
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/10/100b122fc125bdf1fe768a3331a0cd413c3d1261/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/ftrace.exp: can't run to main for ftrace tests
new UNRESOLVED: gdb.trace/ftrace.exp: delete all breakpoints in delete_breakpoints
==============================================
*** 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/10/100b122fc125bdf1fe768a3331a0cd413c3d1261//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/10/100b122fc125bdf1fe768a3331a0cd413c3d1261//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-26 8:02 [binutils-gdb] asan: som: heap-buffer-overflow gdb-buildbot
@ 2019-12-26 8:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-26 8:06 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/1528
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
e5af216040aba59952c99d6479ba5279cee6825d
Subject of commit:
asan: som: heap-buffer-overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e5/e5af216040aba59952c99d6479ba5279cee6825d/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/e5/e5af216040aba59952c99d6479ba5279cee6825d//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/e5/e5af216040aba59952c99d6479ba5279cee6825d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-26 6:19 [binutils-gdb] pe_bfd_read_buildid memory leak gdb-buildbot
@ 2019-12-26 6:07 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-26 6:07 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/1526
Author:
Hannes Domani <ssbssa@yahoo.de>
Commit tested:
f5311f250947307f981e2312968a155cec6037e1
Subject of commit:
pe_bfd_read_buildid memory leak
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f5/f5311f250947307f981e2312968a155cec6037e1/
*** Diff to previous build ***
==============================================
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/f5/f5311f250947307f981e2312968a155cec6037e1//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/f5/f5311f250947307f981e2312968a155cec6037e1//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-25 21:44 [binutils-gdb] Fix printing ULONGEST variables on x86-32 gdb-buildbot
@ 2019-12-25 21:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-25 21: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/1525
Author:
Ruslan Kabatsayev <b7.10110111@gmail.com>
Commit tested:
3142e908d01c044b15c750b5427c9ea2f8a486e2
Subject of commit:
Fix printing ULONGEST variables on x86-32
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/31/3142e908d01c044b15c750b5427c9ea2f8a486e2/
*** Diff to previous build ***
==============================================
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
==============================================
*** 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/31/3142e908d01c044b15c750b5427c9ea2f8a486e2//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/31/3142e908d01c044b15c750b5427c9ea2f8a486e2//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-23 14:53 [binutils-gdb] Fix compilation of Readline on mingw.org's MinGW gdb-buildbot
@ 2019-12-23 15:45 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-23 15:45 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/1522
Author:
Eli Zaretskii <eliz@gnu.org>
Commit tested:
e76ff636537c6140bb9d0b0a39260d840f37ca7e
Subject of commit:
Fix compilation of Readline on mingw.org's MinGW
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e7/e76ff636537c6140bb9d0b0a39260d840f37ca7e/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> UNRESOLVED: gdb.threads/attach-stopped.exp: nonthreaded: attach2 to stopped bt
PASS -> UNRESOLVED: gdb.threads/attach-stopped.exp: nonthreaded: attach2 to stopped, after setting file
==============================================
*** 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/e7/e76ff636537c6140bb9d0b0a39260d840f37ca7e//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/e7/e76ff636537c6140bb9d0b0a39260d840f37ca7e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-23 12:00 [binutils-gdb] ppc: misc minor build corrections gdb-buildbot
@ 2019-12-23 14:53 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-23 14:53 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/1521
Author:
Jan Beulich <jbeulich@suse.com>
Commit tested:
0e62b37a3f4a72f7b7ff5bae280017e0529aa1ec
Subject of commit:
ppc: misc minor build corrections
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0e/0e62b37a3f4a72f7b7ff5bae280017e0529aa1ec/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
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/0e/0e62b37a3f4a72f7b7ff5bae280017e0529aa1ec//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/0e/0e62b37a3f4a72f7b7ff5bae280017e0529aa1ec//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-23 11:31 [binutils-gdb] asan: vms-alpha: heap-buffer-overflow gdb-buildbot
@ 2019-12-23 11:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-23 11:26 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/1520
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
2c0e48e5b797de474ef2e19f4146349065833138
Subject of commit:
asan: vms-alpha: heap-buffer-overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2c/2c0e48e5b797de474ef2e19f4146349065833138/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/entry-values.exp: can't run to main to check for trace support
new FAIL: gdb.trace/trace-condition.exp: can't run to main for ftrace tests
==============================================
*** 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/2c/2c0e48e5b797de474ef2e19f4146349065833138//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/2c/2c0e48e5b797de474ef2e19f4146349065833138//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-23 9:04 [binutils-gdb] ubsan: d30v: left shift cannot be represented in type 'long long' gdb-buildbot
@ 2019-12-23 9:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-23 9:22 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/1517
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
1a1e2852a56da48da1f3b5c80d23c3998a9000fc
Subject of commit:
ubsan: d30v: left shift cannot be represented in type 'long long'
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1a/1a1e2852a56da48da1f3b5c80d23c3998a9000fc/
*** 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/1a/1a1e2852a56da48da1f3b5c80d23c3998a9000fc//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/1a/1a1e2852a56da48da1f3b5c80d23c3998a9000fc//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-23 8:00 [binutils-gdb] ubsan: wasm: shift is too large for 64-bit type 'bfd_vma' gdb-buildbot
@ 2019-12-23 8:01 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-23 8: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/1516
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
27c1c4271a14cc2ebc27227212c19d4227ef212d
Subject of commit:
ubsan: wasm: shift is too large for 64-bit type 'bfd_vma'
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/27/27c1c4271a14cc2ebc27227212c19d4227ef212d/
*** Diff to previous build ***
==============================================
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/27/27c1c4271a14cc2ebc27227212c19d4227ef212d//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/27/27c1c4271a14cc2ebc27227212c19d4227ef212d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 21:20 [binutils-gdb] Fix whitespace in last change in top.c gdb-buildbot
@ 2019-12-21 21:26 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 21:26 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/1513
Author:
Eli Zaretskii <eliz@gnu.org>
Commit tested:
0ea8adde5ddc530772f075873b7d05d4fa29a724
Subject of commit:
Fix whitespace in last change in top.c
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0e/0ea8adde5ddc530772f075873b7d05d4fa29a724/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/0e/0ea8adde5ddc530772f075873b7d05d4fa29a724//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/0e/0ea8adde5ddc530772f075873b7d05d4fa29a724//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 18:51 [binutils-gdb] sym-info-cmds.exp: add yet another missing quote in test name gdb-buildbot
@ 2019-12-21 18:54 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 18:54 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/1510
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
7f2d7a0d0d827788394ba7a5a8f4b6b4e0671a7c
Subject of commit:
sym-info-cmds.exp: add yet another missing quote in test name
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/7f/7f2d7a0d0d827788394ba7a5a8f4b6b4e0671a7c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/solib-display.exp: IN: after rerun
PASS -> FAIL: gdb.base/solib-display.exp: IN: break 25
new FAIL: gdb.base/solib-display.exp: IN: can't run to main
PASS -> FAIL: gdb.base/solib-display.exp: IN: display a_local
PASS -> FAIL: gdb.base/solib-display.exp: IN: display a_static
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/7f/7f2d7a0d0d827788394ba7a5a8f4b6b4e0671a7c//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/7f/7f2d7a0d0d827788394ba7a5a8f4b6b4e0671a7c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 17:35 [binutils-gdb] sym-info-cmds.exp: add missing quote in test name gdb-buildbot
@ 2019-12-21 18:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 18:04 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/1509
Author:
Simon Marchi <simon.marchi@efficios.com>
Commit tested:
f3bce4830bfe97bcf1c3c0c549619561dc3fc9b8
Subject of commit:
sym-info-cmds.exp: add missing quote in test name
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/f3/f3bce4830bfe97bcf1c3c0c549619561dc3fc9b8/
*** Diff to previous build ***
==============================================
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/f3/f3bce4830bfe97bcf1c3c0c549619561dc3fc9b8//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/f3/f3bce4830bfe97bcf1c3c0c549619561dc3fc9b8//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 17:14 [binutils-gdb] Use enum bitfield for the calling_convention attribute of a subroutine gdb-buildbot
@ 2019-12-21 17:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 17:05 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/1508
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
d0922fcf02c6f60ca17cbddccd8b9c8f789eef8c
Subject of commit:
Use enum bitfield for the calling_convention attribute of a subroutine
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d0/d0922fcf02c6f60ca17cbddccd8b9c8f789eef8c/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
==============================================
*** 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/d0/d0922fcf02c6f60ca17cbddccd8b9c8f789eef8c//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/d0/d0922fcf02c6f60ca17cbddccd8b9c8f789eef8c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 15:46 [binutils-gdb] infcall: handle pass-by-reference arguments appropriately gdb-buildbot
@ 2019-12-21 15:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 15:28 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/1506
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
099a6354dab7e74c990501929f383394fc8efd02
Subject of commit:
infcall: handle pass-by-reference arguments appropriately
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/09/099a6354dab7e74c990501929f383394fc8efd02/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/09/099a6354dab7e74c990501929f383394fc8efd02//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/09/099a6354dab7e74c990501929f383394fc8efd02//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 13:51 [binutils-gdb] infcall, c++: allow more info to be computed for pass-by-reference values gdb-buildbot
@ 2019-12-21 13:49 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 13:49 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/1504
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
9d084466d740e40c655609f9c04b3bb2b9b9ca76
Subject of commit:
infcall, c++: allow more info to be computed for pass-by-reference values
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9d/9d084466d740e40c655609f9c04b3bb2b9b9ca76/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 10: delete all breakpoints in delete_breakpoints
==============================================
*** 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/9d/9d084466d740e40c655609f9c04b3bb2b9b9ca76//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/9d/9d084466d740e40c655609f9c04b3bb2b9b9ca76//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 13:01 [binutils-gdb] gdb: recognize new DWARF attributes: defaulted, deleted, calling conv gdb-buildbot
@ 2019-12-21 13:02 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 13:02 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/1503
Author:
Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Commit tested:
e35000a7f8be021459102751db7e0b7e2868b57e
Subject of commit:
gdb: recognize new DWARF attributes: defaulted, deleted, calling conv.
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e3/e35000a7f8be021459102751db7e0b7e2868b57e/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 4: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.threads/killed.exp: GDB exits after multi-threaded program exits messily
new UNRESOLVED: gdb.threads/signal-delivered-right-thread.exp: signal 0: 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-native-extended-gdbserver-m64/e3/e35000a7f8be021459102751db7e0b7e2868b57e//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/e3/e35000a7f8be021459102751db7e0b7e2868b57e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 10:37 [binutils-gdb] Fix "list" command in the TUI gdb-buildbot
@ 2019-12-21 10:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 10:28 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/1500
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
fc9d2d724fcc30b66308ae31d3de98e977d27a76
Subject of commit:
Fix "list" command in the TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fc/fc9d2d724fcc30b66308ae31d3de98e977d27a76/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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-extended-gdbserver-m64/fc/fc9d2d724fcc30b66308ae31d3de98e977d27a76//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/fc/fc9d2d724fcc30b66308ae31d3de98e977d27a76//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 10:02 [binutils-gdb] Add observable to watch current source symtab gdb-buildbot
@ 2019-12-21 9:38 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 9:38 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/1499
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
a75cd9a2c129dfc086cbe570ef9cff9b84570bbd
Subject of commit:
Add observable to watch current source symtab
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a7/a75cd9a2c129dfc086cbe570ef9cff9b84570bbd/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/signal-delivered-right-thread.exp: signal 0: can't run to main
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/a7/a75cd9a2c129dfc086cbe570ef9cff9b84570bbd//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/a7/a75cd9a2c129dfc086cbe570ef9cff9b84570bbd//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 8:49 [binutils-gdb] Use bool in tui_before_prompt gdb-buildbot
@ 2019-12-21 8:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 8:47 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/1498
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
2dfd3df48dc7edb551718b3944eca6b35a7058a5
Subject of commit:
Use bool in tui_before_prompt
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/2d/2dfd3df48dc7edb551718b3944eca6b35a7058a5/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.trace/unavailable-dwarf-piece.exp: delete all breakpoints in delete_breakpoints
==============================================
*** 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/2d/2dfd3df48dc7edb551718b3944eca6b35a7058a5//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/2d/2dfd3df48dc7edb551718b3944eca6b35a7058a5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 7:51 [binutils-gdb] Don't call set_current_source_symtab_and_line from TUI gdb-buildbot
@ 2019-12-21 8:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 8:08 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/1497
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
54217b84bdca3457c16ca7ee9e770f301fc052f9
Subject of commit:
Don't call set_current_source_symtab_and_line from TUI
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/54/54217b84bdca3457c16ca7ee9e770f301fc052f9/
*** Diff to previous build ***
==============================================
FAIL -> UNRESOLVED: gdb.threads/signal-delivered-right-thread.exp: signal 0: can't run to main
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/54/54217b84bdca3457c16ca7ee9e770f301fc052f9//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/54/54217b84bdca3457c16ca7ee9e770f301fc052f9//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 6:49 [binutils-gdb] Change set_locator_info to take a symtab_and_line gdb-buildbot
@ 2019-12-21 7:05 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 7:05 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/1496
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
0ab92974ab9041d80dbd12303d5e8115436fd61e
Subject of commit:
Change set_locator_info to take a symtab_and_line
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0a/0ab92974ab9041d80dbd12303d5e8115436fd61e/
*** Diff to previous build ***
==============================================
new FAIL: gdb.threads/signal-delivered-right-thread.exp: signal 0: 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-native-extended-gdbserver-m64/0a/0ab92974ab9041d80dbd12303d5e8115436fd61e//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/0a/0ab92974ab9041d80dbd12303d5e8115436fd61e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ 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:35 ` gdb-buildbot
0 siblings, 0 replies; 1954+ 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] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 3:56 [binutils-gdb] Simplify tui_update_source_windows_with_line gdb-buildbot
@ 2019-12-21 3:47 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 3:47 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/1492
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
5d49bf1b698124fe21017105f84b18e29221b262
Subject of commit:
Simplify tui_update_source_windows_with_line
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5d/5d49bf1b698124fe21017105f84b18e29221b262/
*** 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/5d/5d49bf1b698124fe21017105f84b18e29221b262//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/5d/5d49bf1b698124fe21017105f84b18e29221b262//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-21 1:05 [binutils-gdb] Use start_line_or_addr in TUI windows gdb-buildbot
@ 2019-12-21 1:32 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-21 1:32 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/1489
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
57e4b379e96383c4c7ee0aa0bb9b81018688f47d
Subject of commit:
Use start_line_or_addr in TUI windows
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/57/57e4b379e96383c4c7ee0aa0bb9b81018688f47d/
*** Diff to previous build ***
==============================================
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/access_tagged_param.exp: continue
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/exec_changed.exp: start second
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/ptype_tagged_param.exp: ptype s
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach.exp: cmdline attach run: run to main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: INNER: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: dl bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-probes.exp: ensure using probes
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections
new FAIL: gdb.base/compare-sections.exp: after run to main: compare-sections -r
new FAIL: gdb.base/compare-sections.exp: read-only: compare-sections -r
new FAIL: gdb.base/default.exp: cd
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=off ds=gdb dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=off: re-attach to inferior
new KFAIL: gdb.base/dprintf-detach.exp: bai=on ds=agent dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=off: re-attach to inferior
new KPASS: gdb.base/dprintf-detach.exp: bai=on ds=gdb dd=on: re-attach to inferior
new KFAIL: gdb.base/foll-vfork.exp: exit: vfork child follow, finish after tcatch vfork: finish
new KFAIL: gdb.base/info-macros.exp: info macros info-macros.c:42
new FAIL: gdb.base/interrupt-daemon.exp: bg: continue&
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt
new FAIL: gdb.base/interrupt-daemon.exp: bg: interrupt cmd stops process
new FAIL: gdb.base/interrupt-daemon.exp: fg: ctrl-c stops process
new FAIL: gdb.base/large-frame.exp: optimize=-O0: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O1: backtrace
new FAIL: gdb.base/large-frame.exp: optimize=-O2: backtrace
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: BEFORE_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP1_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP2_2 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP3_1 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_1_FROM_MACSCP3 defined/undefined when stopped at macscp4_2_from_macscp3
new KFAIL: gdb.base/macscp.exp: UNTIL_MACSCP4_2_FROM_MACSCP2 defined/undefined when stopped at macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_1_from_macscp3
new KFAIL: gdb.base/macscp.exp: info macro WHERE stopped in macscp4_2_from_macscp3
new KFAIL: gdb.base/radix.exp: print 20.; expect 14; output radix 16
new KFAIL: gdb.base/radix.exp: print 20.; expect 24; output radix 8
new FAIL: gdb.base/share-env-with-gdbserver.exp: strange named var: print result of getenv for 'asd ='
new KFAIL: gdb.base/sigbpt.exp: stepi bp at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before and at segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi bp before segv; stepi out of handler
new KFAIL: gdb.base/sigbpt.exp: stepi; stepi out of handler
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=off: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to end of inf 2
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=child: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to marker
new FAIL: gdb.base/step-over-syscall.exp: detach-on-fork=on: follow-fork=parent: break cond on target : vfork: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to syscall insn vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: continue to vfork
new FAIL: gdb.base/step-over-syscall.exp: vfork: displaced=off: single step over vfork
new FAIL: gdb.base/store.exp: upvar doublest l; print old r, expecting -2
new FAIL: gdb.base/store.exp: var doublest l; print old r, expecting -2
new KFAIL: gdb.base/utf8-identifiers.exp: tab complete "break fun"
new KFAIL: gdb.base/watchpoint-unaligned.exp: wpcount
new FAIL: gdb.base/with.exp: repeat: reinvoke with no previous command to relaunch
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main
new FAIL: gdb.cp/annota2.exp: continue until exit
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: continue to exit
new KPASS: gdb.cp/cpexprs.exp: p CV::m
new KFAIL: gdb.cp/local.exp: ptype InnerLocal::NestedInnerLocal
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new KFAIL: gdb.cp/oranking.exp: p foo0
new KFAIL: gdb.cp/oranking.exp: p foo10
new KFAIL: gdb.cp/oranking.exp: p foo11
new KFAIL: gdb.cp/oranking.exp: p foo13
new KFAIL: gdb.cp/oranking.exp: p foo14
new KFAIL: gdb.cp/oranking.exp: p foo2
new KFAIL: gdb.cp/rvalue-ref-overload.exp: rvalue reference overload
new KFAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid
new KFAIL: gdb.cp/var-tag.exp: global collision: print global
new KFAIL: gdb.cp/virtfunc.exp: print pEe->D::vg
new KFAIL: gdb.dwarf2/dw2-simple-locdesc.exp: p &s.shl
new FAIL: gdb.gdb/complaints.exp: clear complaints
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
new UNRESOLVED: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
new FAIL: gdb.gdb/unittest.exp: maintenance selftest
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=main: list of breakpoints
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: break-insert -r operation
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp .*llee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: insert breakpoint with regexp callee2
new KFAIL: gdb.mi/mi-break.exp: mi-mode=separate: list of breakpoints
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=0: breakpoint hit reported on console
new UNRESOLVED: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new KFAIL: gdb.mi/mi-until.exp: until after while loop
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=all-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new KFAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: thread-select, event on cli
new FAIL: gdb.multi/remove-inferiors.exp: couldn't run to main.
new KFAIL: gdb.opt/inline-cmds.exp: next to second func1
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 2
new KFAIL: gdb.opt/inline-locals.exp: info locals above bar 3
new KFAIL: gdb.pascal/types.exp: pt 'a simple string'
new FAIL: gdb.python/py-events.exp: get current thread
new KFAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=delete: connection to GDBserver succeeded
new FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=target:: action=permission: connection to GDBserver succeeded
new FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
new FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=3: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=4: created new thread
new FAIL: gdb.threads/multiple-successive-infcall.exp: thread=5: created new thread
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/57/57e4b379e96383c4c7ee0aa0bb9b81018688f47d//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/57/57e4b379e96383c4c7ee0aa0bb9b81018688f47d//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-20 23:42 [binutils-gdb] Remove tui_source_window::show_symtab_source gdb-buildbot
@ 2019-12-20 23:40 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-20 23:40 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/1487
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
469b073133fa35b54ab4f1bc3dee42ccede84689
Subject of commit:
Remove tui_source_window::show_symtab_source
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/46/469b073133fa35b54ab4f1bc3dee42ccede84689/
*** 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/46/469b073133fa35b54ab4f1bc3dee42ccede84689//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/46/469b073133fa35b54ab4f1bc3dee42ccede84689//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-20 21:18 [binutils-gdb] Simplify tui_source_window_base::maybe_update method gdb-buildbot
@ 2019-12-20 21:11 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-20 21:11 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/1484
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
1ae58f0c640ccef6ae9cc9b349547bb552274b69
Subject of commit:
Simplify tui_source_window_base::maybe_update method
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1a/1ae58f0c640ccef6ae9cc9b349547bb552274b69/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.ada/task_switch_in_core.exp: save a corefile
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/1a/1ae58f0c640ccef6ae9cc9b349547bb552274b69//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/1a/1ae58f0c640ccef6ae9cc9b349547bb552274b69//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-20 19:13 [binutils-gdb] Remove tui_show_disassem_and_update_source gdb-buildbot
@ 2019-12-20 19:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-20 19:55 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/1482
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
8acfefcc8fc7a346d0ecf3d37ca47c5c43761223
Subject of commit:
Remove tui_show_disassem_and_update_source
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/8a/8acfefcc8fc7a346d0ecf3d37ca47c5c43761223/
*** Diff to previous build ***
==============================================
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/8a/8acfefcc8fc7a346d0ecf3d37ca47c5c43761223//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/8a/8acfefcc8fc7a346d0ecf3d37ca47c5c43761223//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-20 18:42 [binutils-gdb] Remove parameters from tui_show_source gdb-buildbot
@ 2019-12-20 18:39 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-20 18:39 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/1481
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
5ebd54023c160383290f20f492ff871f64b7439a
Subject of commit:
Remove parameters from tui_show_source
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/5e/5ebd54023c160383290f20f492ff871f64b7439a/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.trace/pending.exp: trace installed_in_trace: 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-native-extended-gdbserver-m64/5e/5ebd54023c160383290f20f492ff871f64b7439a//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/5e/5ebd54023c160383290f20f492ff871f64b7439a//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-20 17:52 [binutils-gdb] Change tui_update_locator_fullname to take a symtab gdb-buildbot
@ 2019-12-20 18:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-20 18:08 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/1480
Author:
Tom Tromey <tom@tromey.com>
Commit tested:
c1b167d76ec06c02f1aaa176c3dcfb1b4d8cee0c
Subject of commit:
Change tui_update_locator_fullname to take a symtab
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/c1/c1b167d76ec06c02f1aaa176c3dcfb1b4d8cee0c/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: single-process: detach: killed outside: can't run to main
new FAIL: gdb.trace/ftrace-lock.exp: can't run to main to check for trace support
==============================================
*** 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/c1/c1b167d76ec06c02f1aaa176c3dcfb1b4d8cee0c//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/c1/c1b167d76ec06c02f1aaa176c3dcfb1b4d8cee0c//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-20 14:30 [binutils-gdb] ubsan: or1k: left shift of negative value gdb-buildbot
@ 2019-12-20 14:51 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-20 14:51 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/1477
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
bcd9f578a96b9776e34e5cec963928f5a96b80e7
Subject of commit:
ubsan: or1k: left shift of negative value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/bc/bcd9f578a96b9776e34e5cec963928f5a96b80e7/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/signal-delivered-right-thread.exp: signal 0: can't run to main
new UNRESOLVED: gdb.threads/signal-delivered-right-thread.exp: signal 0: delete all breakpoints in delete_breakpoints
==============================================
*** 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/bc/bcd9f578a96b9776e34e5cec963928f5a96b80e7//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/bc/bcd9f578a96b9776e34e5cec963928f5a96b80e7//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-20 13:35 [binutils-gdb] ubsan: xtensa: left shift cannot be represented in type 'int' gdb-buildbot
@ 2019-12-20 14:08 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-20 14:08 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/1476
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
e76832f125f6f005ddf3c75b7be675272568b01e
Subject of commit:
ubsan: xtensa: left shift cannot be represented in type 'int'
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/e7/e76832f125f6f005ddf3c75b7be675272568b01e/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
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/e7/e76832f125f6f005ddf3c75b7be675272568b01e//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/e7/e76832f125f6f005ddf3c75b7be675272568b01e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-20 13:17 [binutils-gdb] ubsan: hppa: left shift of negative value gdb-buildbot
@ 2019-12-20 13:06 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-20 13:06 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/1475
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
15d2859fddcb769e59b906f9443c85afdd5d7380
Subject of commit:
ubsan: hppa: left shift of negative value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/15/15d2859fddcb769e59b906f9443c85afdd5d7380/
*** Diff to previous build ***
==============================================
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/15/15d2859fddcb769e59b906f9443c85afdd5d7380//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/15/15d2859fddcb769e59b906f9443c85afdd5d7380//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-20 11:56 [binutils-gdb] ubsan: m68hc1x: left shift of negative value gdb-buildbot
@ 2019-12-20 12:28 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-20 12:28 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/1474
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
000fe1a756e707624d387eeacbaa959a01f0d040
Subject of commit:
ubsan: m68hc1x: left shift of negative value
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/00/000fe1a756e707624d387eeacbaa959a01f0d040/
*** 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/00/000fe1a756e707624d387eeacbaa959a01f0d040//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/00/000fe1a756e707624d387eeacbaa959a01f0d040//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-20 11:29 [binutils-gdb] bfd_check_format memory leak gdb-buildbot
@ 2019-12-20 11:24 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-20 11:24 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/1473
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
9d78076ef8ef07890ad89c1122bdf49932a979a5
Subject of commit:
bfd_check_format memory leak
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/9d/9d78076ef8ef07890ad89c1122bdf49932a979a5/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/signal-delivered-right-thread.exp: signal 0: can't run to main
new UNRESOLVED: gdb.threads/signal-delivered-right-thread.exp: signal 0: delete all breakpoints in delete_breakpoints
==============================================
*** 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/9d/9d78076ef8ef07890ad89c1122bdf49932a979a5//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/9d/9d78076ef8ef07890ad89c1122bdf49932a979a5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-20 10:20 [binutils-gdb] coff-alpha memory leak gdb-buildbot
@ 2019-12-20 10:34 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-20 10:34 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/1472
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
fcc5d04f9264b75241fc50cf655a49c9a7de7d76
Subject of commit:
coff-alpha memory leak
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/fc/fcc5d04f9264b75241fc50cf655a49c9a7de7d76/
*** 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/fc/fcc5d04f9264b75241fc50cf655a49c9a7de7d76//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/fc/fcc5d04f9264b75241fc50cf655a49c9a7de7d76//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-20 0:11 [binutils-gdb] Consistently quote variables used with "test" gdb-buildbot
@ 2019-12-19 23:55 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-19 23:55 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/1471
Author:
Christian Biesinger <cbiesinger@google.com>
Commit tested:
0ad6b8ee70dd18ab1f956800ea3494ea790c8a55
Subject of commit:
Consistently quote variables used with "test"
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/0a/0ad6b8ee70dd18ab1f956800ea3494ea790c8a55/
*** Diff to previous build ***
==============================================
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/0a/0ad6b8ee70dd18ab1f956800ea3494ea790c8a55//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/0a/0ad6b8ee70dd18ab1f956800ea3494ea790c8a55//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-19 23:18 [binutils-gdb] Fix build with GNU Make 3.81 gdb-buildbot
@ 2019-12-19 23:04 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-19 23:04 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/1470
Author:
Bernd Edlinger <bernd.edlinger@hotmail.de>
Commit tested:
1ee7b812e778e4fddcfaa5f0be023dfdfb5a4d6e
Subject of commit:
Fix build with GNU Make 3.81
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1e/1ee7b812e778e4fddcfaa5f0be023dfdfb5a4d6e/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: can't run to main
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/1e/1ee7b812e778e4fddcfaa5f0be023dfdfb5a4d6e//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/1e/1ee7b812e778e4fddcfaa5f0be023dfdfb5a4d6e//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-19 21:51 [binutils-gdb] Make the literal argument to pow a double, not an integer gdb-buildbot
@ 2019-12-19 22:22 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-19 22:22 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/1469
Author:
Christian Biesinger <cbiesinger@google.com>
Commit tested:
d411762c45d66b64c5cbfc8a9f004b1f2e1fba4b
Subject of commit:
Make the literal argument to pow a double, not an integer
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/d4/d411762c45d66b64c5cbfc8a9f004b1f2e1fba4b/
*** Diff to previous build ***
==============================================
new FAIL: gdb.trace/collection.exp: print /x $pc
new FAIL: gdb.trace/collection.exp: print /x $sp
new FAIL: gdb.trace/collection.exp: print /x $x29
==============================================
*** 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/d4/d411762c45d66b64c5cbfc8a9f004b1f2e1fba4b//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/d4/d411762c45d66b64c5cbfc8a9f004b1f2e1fba4b//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2019-12-19 21:21 [binutils-gdb] Cast the log10 argument to double to disambiguate it gdb-buildbot
@ 2019-12-19 21:29 ` gdb-buildbot
0 siblings, 0 replies; 1954+ messages in thread
From: gdb-buildbot @ 2019-12-19 21:29 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/1468
Author:
Christian Biesinger <cbiesinger@google.com>
Commit tested:
1cd4a20a27c430fdd0db8d5b154e9c7860e440f5
Subject of commit:
Cast the log10 argument to double to disambiguate it
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/1c/1cd4a20a27c430fdd0db8d5b154e9c7860e440f5/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/watchthreads2.exp: can't run to main
new UNRESOLVED: gdb.threads/watchthreads2.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.threads/watchthreads2.exp: set can-use-hw-watchpoints 1
==============================================
*** 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/1c/1cd4a20a27c430fdd0db8d5b154e9c7860e440f5//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/1c/1cd4a20a27c430fdd0db8d5b154e9c7860e440f5//xfail.table.gz>
^ permalink raw reply [flat|nested] 1954+ messages in thread
end of thread, other threads:[~2020-06-24 3:57 UTC | newest]
Thread overview: 1954+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-19 17:47 [binutils-gdb] Add --with-static-standard-libraries to the top level gdb-buildbot
2019-08-19 17:27 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
2019-08-19 17:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
2019-08-19 21:06 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2019-08-19 21:22 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2019-08-19 22:32 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2019-08-19 22:44 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2019-08-19 23:00 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2019-08-19 23:16 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
2019-12-19 21:21 [binutils-gdb] Cast the log10 argument to double to disambiguate it gdb-buildbot
2019-12-19 21:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-19 21:51 [binutils-gdb] Make the literal argument to pow a double, not an integer gdb-buildbot
2019-12-19 22:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-19 23:18 [binutils-gdb] Fix build with GNU Make 3.81 gdb-buildbot
2019-12-19 23:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-20 0:11 [binutils-gdb] Consistently quote variables used with "test" gdb-buildbot
2019-12-19 23:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-20 10:20 [binutils-gdb] coff-alpha memory leak gdb-buildbot
2019-12-20 10:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-20 11:29 [binutils-gdb] bfd_check_format memory leak gdb-buildbot
2019-12-20 11:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-20 11:56 [binutils-gdb] ubsan: m68hc1x: left shift of negative value gdb-buildbot
2019-12-20 12:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-20 13:17 [binutils-gdb] ubsan: hppa: left shift of negative value gdb-buildbot
2019-12-20 13:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-20 13:35 [binutils-gdb] ubsan: xtensa: left shift cannot be represented in type 'int' gdb-buildbot
2019-12-20 14:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-20 14:30 [binutils-gdb] ubsan: or1k: left shift of negative value gdb-buildbot
2019-12-20 14:51 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-20 17:52 [binutils-gdb] Change tui_update_locator_fullname to take a symtab gdb-buildbot
2019-12-20 18:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-20 18:42 [binutils-gdb] Remove parameters from tui_show_source gdb-buildbot
2019-12-20 18:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-20 19:13 [binutils-gdb] Remove tui_show_disassem_and_update_source gdb-buildbot
2019-12-20 19:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-20 21:18 [binutils-gdb] Simplify tui_source_window_base::maybe_update method gdb-buildbot
2019-12-20 21:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-20 23:42 [binutils-gdb] Remove tui_source_window::show_symtab_source gdb-buildbot
2019-12-20 23:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 1:05 [binutils-gdb] Use start_line_or_addr in TUI windows gdb-buildbot
2019-12-21 1:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 3:56 [binutils-gdb] Simplify tui_update_source_windows_with_line gdb-buildbot
2019-12-21 3:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 5:08 [binutils-gdb] Display "main" on initial TUI startup gdb-buildbot
2019-12-21 5:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 6:49 [binutils-gdb] Change set_locator_info to take a symtab_and_line gdb-buildbot
2019-12-21 7:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 7:51 [binutils-gdb] Don't call set_current_source_symtab_and_line from TUI gdb-buildbot
2019-12-21 8:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 8:49 [binutils-gdb] Use bool in tui_before_prompt gdb-buildbot
2019-12-21 8:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 10:02 [binutils-gdb] Add observable to watch current source symtab gdb-buildbot
2019-12-21 9:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 10:37 [binutils-gdb] Fix "list" command in the TUI gdb-buildbot
2019-12-21 10:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 13:01 [binutils-gdb] gdb: recognize new DWARF attributes: defaulted, deleted, calling conv gdb-buildbot
2019-12-21 13:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 13:51 [binutils-gdb] infcall, c++: allow more info to be computed for pass-by-reference values gdb-buildbot
2019-12-21 13:49 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 15:46 [binutils-gdb] infcall: handle pass-by-reference arguments appropriately gdb-buildbot
2019-12-21 15:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 17:14 [binutils-gdb] Use enum bitfield for the calling_convention attribute of a subroutine gdb-buildbot
2019-12-21 17:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 17:35 [binutils-gdb] sym-info-cmds.exp: add missing quote in test name gdb-buildbot
2019-12-21 18:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 18:51 [binutils-gdb] sym-info-cmds.exp: add yet another missing quote in test name gdb-buildbot
2019-12-21 18:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-21 21:20 [binutils-gdb] Fix whitespace in last change in top.c gdb-buildbot
2019-12-21 21:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-23 8:00 [binutils-gdb] ubsan: wasm: shift is too large for 64-bit type 'bfd_vma' gdb-buildbot
2019-12-23 8:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-23 9:04 [binutils-gdb] ubsan: d30v: left shift cannot be represented in type 'long long' gdb-buildbot
2019-12-23 9:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-23 11:31 [binutils-gdb] asan: vms-alpha: heap-buffer-overflow gdb-buildbot
2019-12-23 11:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-23 12:00 [binutils-gdb] ppc: misc minor build corrections gdb-buildbot
2019-12-23 14:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-23 14:53 [binutils-gdb] Fix compilation of Readline on mingw.org's MinGW gdb-buildbot
2019-12-23 15:45 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-25 21:44 [binutils-gdb] Fix printing ULONGEST variables on x86-32 gdb-buildbot
2019-12-25 21:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-26 6:19 [binutils-gdb] pe_bfd_read_buildid memory leak gdb-buildbot
2019-12-26 6:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-26 8:02 [binutils-gdb] asan: som: heap-buffer-overflow gdb-buildbot
2019-12-26 8:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-26 9:40 [binutils-gdb] ubsan: crx: index 5 out of bounds for type 'operand_desc const[5]' gdb-buildbot
2019-12-26 9:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-26 22:45 [binutils-gdb] Add a NEWS entry for multithreaded symbol loading gdb-buildbot
2019-12-26 22:51 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-27 9:11 [binutils-gdb] x86: consolidate Disp<NN> handling a little gdb-buildbot
2019-12-27 9:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-27 10:16 [binutils-gdb] x86-64: fix Intel64 handling of branch with data16 prefix gdb-buildbot
2019-12-27 10:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-27 18:10 [binutils-gdb] Change tui_active to bool gdb-buildbot
2019-12-27 18:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-27 19:09 [binutils-gdb] Reorder an "if" in print_disassembly gdb-buildbot
2019-12-27 19:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-27 19:40 [binutils-gdb] Remove dead code from TUI gdb-buildbot
2019-12-27 19:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-29 12:17 [binutils-gdb] PR15350, Fix compressed debug sections for PE targets gdb-buildbot
2019-12-29 12:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-29 13:56 [binutils-gdb] asan: alpha-vms: memory leaks gdb-buildbot
2019-12-29 13:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-29 14:29 [binutils-gdb] ubsan: alpha-vms: shift exponent is too large gdb-buildbot
2019-12-29 14:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-29 15:17 [binutils-gdb] Usage of unitialized heap in tic4x_print_cond gdb-buildbot
2019-12-29 15:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-29 22:10 [binutils-gdb] Fix setting breakpoints or stepping on line 65535 gdb-buildbot
2019-12-29 21:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-29 23:41 [binutils-gdb] Re: Usage of unitialized heap in tic4x_print_cond gdb-buildbot
2019-12-29 23:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-30 13:41 [binutils-gdb] coff object_p memory leaks gdb-buildbot
2019-12-30 13:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-30 14:29 [binutils-gdb] vms-alpha.c object_p memory leaks gdb-buildbot
2019-12-30 14:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-30 16:47 [binutils-gdb] Use "bool" in more spots in TUI gdb-buildbot
2019-12-30 16:33 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-31 13:40 [binutils-gdb] asan: alpha-vms: Heap-buffer-overflow gdb-buildbot
2019-12-31 13:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-01 6:43 [binutils-gdb] update copyright year in version output of gdb, gdbserver and gdbreplay gdb-buildbot
2020-01-01 6:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-01 7:46 [binutils-gdb] gdb/copyright.py: Exit if run from the wrong directory gdb-buildbot
2020-01-01 7:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-01 9:06 [binutils-gdb] gdb/copyright.py: Convert to Python 3 gdb-buildbot
2020-01-01 9:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-01 10:12 [binutils-gdb] Update copyright year range in all GDB files gdb-buildbot
2020-01-01 10:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-01 10:39 [binutils-gdb] Update copyright year in gdbarch.sh doc/gdb.texinfo and doc/refcard.tex gdb-buildbot
2020-01-01 10:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-01 21:02 [binutils-gdb] Add myself to gdb/MAINTAINERS gdb-buildbot
2020-01-01 21:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-02 12:27 [binutils-gdb] Enable building the s12z target on Solaris hosts where REG_Y is defined in system header files gdb-buildbot
2020-01-02 12:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-02 14:31 [binutils-gdb] AArch64: Set the correct ELF class for AArch64 stubs (PR/25210) gdb-buildbot
2020-01-02 14:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-09 14:59 [binutils-gdb] Fix the cast used to prevent compile time warning about an always false test gdb-buildbot
2020-01-09 15:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-09 16:12 [binutils-gdb] Fix an illegal memory access triggered when trying to examine an input file containing corrupt compressed sections gdb-buildbot
2020-01-09 16:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-09 19:30 [binutils-gdb] Fix memory leak of the demangled symbol name gdb-buildbot
2020-01-09 19:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-09 22:32 [binutils-gdb] Fix indentation in print_thread_info_1 gdb-buildbot
2020-01-09 22:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-09 23:56 [binutils-gdb] gdb/testsuite: Fix race condition in gdb.base/skip.exp gdb-buildbot
2020-01-10 0:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-10 1:41 [binutils-gdb] gdb/testsuite/tui: Split enter_tui into two procs gdb-buildbot
2020-01-10 1:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-10 2:27 [binutils-gdb] gdb/testsuite/tui: Introduce check_box_contents gdb-buildbot
2020-01-10 2:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-10 4:03 [binutils-gdb] gdb: Fix scrolling in TUI gdb-buildbot
2020-01-10 4:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
2020-01-10 11:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-10 12:14 [binutils-gdb] ubsan: spu: left shift of negative value gdb-buildbot
2020-01-10 12:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-10 13:00 [binutils-gdb] ubsan: m10300: shift exponent -4 gdb-buildbot
2020-01-10 13:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-10 13:49 [binutils-gdb] ubsan: tilepro: signed integer overflow gdb-buildbot
2020-01-10 14:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-10 14:52 [binutils-gdb] AArch64: Revert setting of elf class in linker stub gdb-buildbot
2020-01-10 14:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-10 15:41 [binutils-gdb] [PR ld/22269] arm: Avoid dynamic relocs for undefweak symbols in static PIE gdb-buildbot
2020-01-10 15:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-10 20:29 [binutils-gdb] gdb/testsuite/gdb.base/stap-probe: Minor clean-up gdb-buildbot
2020-01-10 20:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-10 22:03 [binutils-gdb] Preserve selected thread in all-stop w/ background execution gdb-buildbot
2020-01-10 22:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-10 22:50 [binutils-gdb] Don't rely on inferior_ptid in record_full_wait gdb-buildbot
2020-01-10 23:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 0:47 [binutils-gdb] exceptions.c:print_flush: Remove obsolete check gdb-buildbot
2020-01-11 0:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 1:17 [binutils-gdb] Make target_ops::has_execution take an 'inferior *' instead of a ptid_t gdb-buildbot
2020-01-11 1:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 2:27 [binutils-gdb] Don't check target is running in remote_target::mourn_inferior gdb-buildbot
2020-01-11 2:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 5:37 [binutils-gdb] Some get_last_target_status tweaks gdb-buildbot
2020-01-11 5:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 7:08 [binutils-gdb] Use all_non_exited_inferiors in infrun.c gdb-buildbot
2020-01-11 7:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 7:38 [binutils-gdb] Tweak handling of remote errors in response to resumption packet gdb-buildbot
2020-01-11 7:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 8:42 [binutils-gdb] Avoid another inferior_ptid reference in gdb/remote.c gdb-buildbot
2020-01-11 8:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 9:31 [binutils-gdb] Fix reconnecting to a gdbserver already debugging multiple processes, I gdb-buildbot
2020-01-11 9:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 10:20 [binutils-gdb] Fix reconnecting to a gdbserver already debugging multiple processes, II gdb-buildbot
2020-01-11 10:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 10:51 [binutils-gdb] Multi-target support gdb-buildbot
2020-01-11 11:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 11:37 [binutils-gdb] Add multi-target tests gdb-buildbot
2020-01-11 11:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 12:44 [binutils-gdb] gdbarch-selftests.c: No longer error out if debugging something gdb-buildbot
2020-01-11 12:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 15:13 [binutils-gdb] Require always-non-stop for multi-target resumptions gdb-buildbot
2020-01-11 15:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 16:01 [binutils-gdb] Multi-target: NEWS and user manual gdb-buildbot
2020-01-11 16:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 16:52 [binutils-gdb] Switch the inferior too in switch_to_program_space_and_thread gdb-buildbot
2020-01-11 16:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 17:37 [binutils-gdb] Switch the inferior before outputting its id in "info inferiors" gdb-buildbot
2020-01-11 17:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-11 20:17 [binutils-gdb] Make TUI borders respect "set style enabled" gdb-buildbot
2020-01-11 20:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-12 17:11 [binutils-gdb] gdbserver: include aarch32/aarch64 header file in corresponding source file gdb-buildbot
2020-01-12 17:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-12 17:27 [binutils-gdb] gdbserver: make aarch64_write_goto_address static gdb-buildbot
2020-01-12 17:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-12 21:46 [binutils-gdb] gdb: include gdb_wait.h in gdb_wait.c gdb-buildbot
2020-01-12 22:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 2:40 [binutils-gdb] ubsan: xgate: left shift of negative value gdb-buildbot
2020-01-13 2:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 3:42 [binutils-gdb] ubsan: fr30: left shift of negative value gdb-buildbot
2020-01-13 3:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 5:25 [binutils-gdb] Memory leaks and ineffective bounds checking in wasm_scan gdb-buildbot
2020-01-13 5:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 7:15 [binutils-gdb] score formatting gdb-buildbot
2020-01-13 7:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 8:19 [binutils-gdb] ubsan: wasm32: signed integer overflow gdb-buildbot
2020-01-13 8:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 8:51 [binutils-gdb] asan: ns32k: wild memory write gdb-buildbot
2020-01-13 8:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 10:12 [binutils-gdb] [ARC][committed] Update ARC cpu list gdb-buildbot
2020-01-13 10:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 16:33 [binutils-gdb] gdb: adjust remote-sim.c to multi-target gdb-buildbot
2020-01-13 16:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 20:11 [binutils-gdb] gdb: make regformats output a declaration for the init function gdb-buildbot
2020-01-13 20:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 21:12 [binutils-gdb] gdb: add back declarations for _initialize functions gdb-buildbot
2020-01-13 21:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 22:09 [binutils-gdb] gdb: add declaration to Python init function gdb-buildbot
2020-01-13 22:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 22:38 [binutils-gdb] gdbserver: include hostio.h in hostio-errno.c gdb-buildbot
2020-01-13 23:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-13 23:37 [binutils-gdb] gdbserver: include gdbsupport/common-inferior.h in inferiors.c gdb-buildbot
2020-01-13 23:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-14 0:25 [binutils-gdb] gdbserver: make some functions static in linux-x86-low.c gdb-buildbot
2020-01-14 0:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-14 2:01 [binutils-gdb] Enable -Wmissing-declarations diagnostic gdb-buildbot
2020-01-14 2:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-14 3:13 [binutils-gdb] gdb: use std::vector instead of alloca in core_target::get_core_register_section gdb-buildbot
2020-01-14 3:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-14 4:21 [binutils-gdb] gdb/tui: Place window titles in the center of the border gdb-buildbot
2020-01-14 4:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-14 6:19 [binutils-gdb] Dwarf 5: Handle debug_str_offsets and indexed attributes that have base offsets gdb-buildbot
2020-01-14 6:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-14 6:48 [binutils-gdb] gdb/testsuite: Allow DWARF assembler to create multiple line tables gdb-buildbot
2020-01-14 6:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-14 9:03 [binutils-gdb] ubsan: z8k: left shift cannot be represented in type 'int' gdb-buildbot
2020-01-14 9:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-14 9:29 [binutils-gdb] ubsan: alpha-vms: segv gdb-buildbot
2020-01-14 9:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-14 13:50 [binutils-gdb] Fix various assembler testsuite failures for the Z80 target gdb-buildbot
2020-01-14 14:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-14 20:50 [binutils-gdb] Make skip without argument skip the current inline function gdb-buildbot
2020-01-14 21:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-15 0:50 [binutils-gdb] Consolidate definition of USE_WIN32API gdb-buildbot
2020-01-15 0:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-15 2:25 [binutils-gdb] Remove use of <config.h> from gdb/nat/ gdb-buildbot
2020-01-15 2:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-15 4:55 [binutils-gdb] Fix valgrind error from gdb.decode_line gdb-buildbot
2020-01-15 4:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-15 5:13 [binutils-gdb] PR25384, PowerPC64 ELFv1 copy relocs against function symbols gdb-buildbot
2020-01-15 5:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-15 14:07 [binutils-gdb] MSP430: Fix relocation overflow when using #lo(EXP) macro gdb-buildbot
2020-01-15 14:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-15 15:44 [binutils-gdb] Set the default page size of the PDP11 target to 8192 bytes gdb-buildbot
2020-01-15 15:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-15 18:32 [binutils-gdb] Use get_thread_regcache instead of get_current_regcache in post_create_inferior gdb-buildbot
2020-01-15 18:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-16 9:59 [binutils-gdb] x86: VPEXTRQ/VPINSRQ are unavailable outside of 64-bit mode gdb-buildbot
2020-01-16 9:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-16 10:31 [binutils-gdb] x86: add a few more missing VexWIG gdb-buildbot
2020-01-16 10:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-16 15:14 [binutils-gdb] [binutils][arm] PR25376 Change MVE into a CORE_HIGH feature gdb-buildbot
2020-01-16 15:33 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-16 17:59 [binutils-gdb] Support for DWARF5 location lists entries gdb-buildbot
2020-01-16 18:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-16 20:01 [binutils-gdb] Ensure proc-service symbols have default visibility (PR build/24805) gdb-buildbot
2020-01-16 20:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-17 14:39 [binutils-gdb] Update libiberty sources with changes in the gcc mainline gdb-buildbot
2020-01-17 14:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-17 16:40 [binutils-gdb] gdb: remove use of iterate_over_inferiors in mi/mi-interp.c gdb-buildbot
2020-01-17 17:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-17 17:58 [binutils-gdb] Fix gdbsupport build gdb-buildbot
2020-01-17 20:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-17 20:45 [binutils-gdb] Make all-gdbsupport depend on all-bfd gdb-buildbot
2020-01-18 14:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-17 20:48 [binutils-gdb] Fix spelling errors gdb-buildbot
2020-01-17 23:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-18 14:20 [binutils-gdb] Update top level config files with copies from the official repository gdb-buildbot
2020-01-18 14:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-18 15:11 [binutils-gdb] Add markers for 2.34 branch to the NEWS files and ChangeLogs gdb-buildbot
2020-01-18 15:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-18 16:17 [binutils-gdb] Update version to 2.34.50. Regenerate configure and .pot files gdb-buildbot
2020-01-18 16:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-20 2:56 [binutils-gdb] gdb/linux-fork: simplify one_fork_p gdb-buildbot
2020-01-20 2:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-20 3:57 [binutils-gdb] Remove flickering from the TUI gdb-buildbot
2020-01-20 3:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-20 4:56 [binutils-gdb] Call disassemble_free_target in gdb gdb-buildbot
2020-01-20 4:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-20 5:14 [binutils-gdb] sim: add some stdlib.h includes gdb-buildbot
2020-01-20 5:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-20 10:53 [binutils-gdb] sim: don't rely on inferior_ptid in gdbsim_target::wait gdb-buildbot
2020-01-20 10:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-20 12:44 [binutils-gdb] PowerPC64 ppc_elf_hash_entry, defined_sym_val, is_tls_get_addr gdb-buildbot
2020-01-20 13:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-20 15:39 [binutils-gdb] Don't touch r11 in __tls_get_addr stub gdb-buildbot
2020-01-20 15:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-20 16:29 [binutils-gdb] x86-64: Fix TLSDESC relaxation for x32 gdb-buildbot
2020-01-20 16:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-21 2:18 [binutils-gdb] Updated translations for various binutils sub-directories gdb-buildbot
2020-01-20 18:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-21 8:09 [binutils-gdb] x86: VCVTNEPS2BF16{X,Y} should permit broadcasting gdb-buildbot
2020-01-21 8:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-21 8:57 [binutils-gdb] x86: improve handling of insns with ambiguous operand sizes gdb-buildbot
2020-01-21 9:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-21 14:14 [binutils-gdb] Fix step-over-syscall.exp failure gdb-buildbot
2020-01-21 14:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-21 14:43 [binutils-gdb] Add more debugging output to aarch64_displaced_step_fixup gdb-buildbot
2020-01-21 15:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-21 20:17 [binutils-gdb] Allow use of Pygments to colorize source code gdb-buildbot
2020-01-21 20:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-21 22:09 [binutils-gdb] gdb: fix indentation in infrun.c gdb-buildbot
2020-01-21 21:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-21 22:44 [binutils-gdb] gdb: remove uses of iterate_over_inferiors in remote-sim.c gdb-buildbot
2020-01-21 22:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-22 8:10 [binutils-gdb] PowerPC64 TLS optimization fix gdb-buildbot
2020-01-22 8:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-22 10:05 [binutils-gdb] PowerPC64 tls_get_addr_desc static support gdb-buildbot
2020-01-22 9:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-22 22:31 [binutils-gdb] MSP430: Fix simulator execution of RRUX instruction gdb-buildbot
2020-01-22 22:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-23 11:18 [binutils-gdb] PR25444, Floating point exception in _bfd_elf_compute_section_file_positions gdb-buildbot
2020-01-23 11:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-23 15:17 [binutils-gdb] Updated translations for various binutils sub-directories gdb-buildbot
2020-01-23 15:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-23 18:35 [binutils-gdb] Cache the text section offset of shared libraries gdb-buildbot
2020-01-23 18:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-23 20:40 [binutils-gdb] gdb: fix darwin-nat.c build / adapt to multi-target gdb-buildbot
2020-01-23 20:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-23 23:30 [binutils-gdb] gdb: fix variable shadowing error in darwin-nat.c gdb-buildbot
2020-01-23 23:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-24 1:15 [binutils-gdb] gdb/tui: Prevent exceptions from trying to cross readline gdb-buildbot
2020-01-24 1:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-24 1:36 [binutils-gdb] gdb/tui: asm window handles invalid memory and scrolls better gdb-buildbot
2020-01-24 2:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-24 2:36 [binutils-gdb] gdb: Re-enable stdin for all UIs from start_event_loop gdb-buildbot
2020-01-24 3:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-24 3:19 [binutils-gdb] gdb: Enable stdin on exception in execute_gdb_command gdb-buildbot
2020-01-24 3:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-24 13:32 [binutils-gdb] gdbserver: Remove a stale TAGS recipe for config files gdb-buildbot
2020-01-24 14:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-24 13:41 [binutils-gdb] gdbserver: Make `make TAGS' actually work gdb-buildbot
2020-01-24 15:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-24 16:00 [binutils-gdb] Fix an illegal call to free() when copying a PE format file gdb-buildbot
2020-01-24 16:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-24 17:05 [binutils-gdb] Support the NetBSD version of pthread_setname_np gdb-buildbot
2020-01-24 17:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-24 18:28 [binutils-gdb] Make the class name in the definition match the declaration gdb-buildbot
2020-01-24 18:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-24 19:57 [binutils-gdb] Add install-strip target to gdbserver gdb-buildbot
2020-01-24 19:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-24 22:55 [binutils-gdb] RISC-V: Minor cleanup for s extension support gdb-buildbot
2020-01-24 22:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-25 11:59 [binutils-gdb] Implement 'set/show exec-file-mismatch' gdb-buildbot
2020-01-25 11:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-25 12:25 [binutils-gdb] Test 'set exec-file-mismatch ask|warn|off' gdb-buildbot
2020-01-25 12:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-25 14:11 [binutils-gdb] Document 'set|show exec-file-mismatch (ask|warn|off)' gdb-buildbot
2020-01-25 17:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-27 0:17 [binutils-gdb] Remove an include from machoread.c gdb-buildbot
2020-01-27 0:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-27 1:33 [binutils-gdb] Use new and delete for psymtabs gdb-buildbot
2020-01-27 2:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-27 3:43 [binutils-gdb] Change some psymtab fields to bool gdb-buildbot
2020-01-27 5:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-27 6:04 [binutils-gdb] Do not allocate psymtabs via psymtab_storage gdb-buildbot
2020-01-27 7:49 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-27 7:17 [binutils-gdb] Change allocate_psymtab to be a constructor gdb-buildbot
2020-01-27 10:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-27 11:43 [binutils-gdb] Introduce partial_symtab::read_symtab method gdb-buildbot
2020-01-27 15:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-27 14:31 [binutils-gdb] Consolidate psymtab "Reading" messages gdb-buildbot
2020-01-27 19:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-27 22:58 [binutils-gdb] Virtualize "readin" and "compunit_symtab" gdb-buildbot
2020-01-28 2:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-28 1:14 [binutils-gdb] Mark all weak aliases for copy relocations gdb-buildbot
2020-01-28 4:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-28 2:42 [binutils-gdb] Two minor changes in ctfread.c gdb-buildbot
2020-01-28 7:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-28 5:10 [binutils-gdb] AArch64: Fix cfinv disassembly issues gdb-buildbot
2020-01-28 8:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-28 8:32 [binutils-gdb] Remove cpu-plugin.c gdb-buildbot
2020-01-28 14:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-28 10:20 [binutils-gdb] Harden gdb.base/step-over-syscall.exp gdb-buildbot
2020-01-28 16:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-28 12:11 [binutils-gdb] RISC-V: Fix gdbserver problem with handling arch strings gdb-buildbot
2020-01-28 19:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-29 8:24 [binutils-gdb] [gdb/testsuite] Fix gdb.threads/watchpoint-fork.exp race gdb-buildbot
2020-01-29 8:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-29 15:16 [binutils-gdb] Recognize more program breakpoint patterns gdb-buildbot
2020-01-29 15:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-29 16:39 [binutils-gdb] Test handling of additional brk instruction patterns gdb-buildbot
2020-01-29 17:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-29 18:29 [binutils-gdb] Fix configure.srv error for Linux on PowerPC gdb-buildbot
2020-01-29 20:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-29 20:47 [binutils-gdb] gdbserver: Fix whitespace configure.srv damage for `i[34567]86-*-mingw*' gdb-buildbot
2020-01-29 22:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-30 9:00 [binutils-gdb] ubsan: tic4x: left shift cannot be represented in type 'int' gdb-buildbot
2020-01-30 10:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-30 11:31 [binutils-gdb] x86: drop further pointless/bogus DefaultSize gdb-buildbot
2020-01-30 12:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-30 13:57 [binutils-gdb] x86-64: honor vendor specifics for near RET gdb-buildbot
2020-01-30 14:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-30 15:16 [binutils-gdb] cpu,opcodes,gas: fix neg and neg32 instructions in BPF gdb-buildbot
2020-01-30 17:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-30 17:52 [binutils-gdb] Bugfixes for pe_print_debugdata() gdb-buildbot
2020-01-30 19:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-30 19:14 [binutils-gdb] Add some new PE_IMAGE_DEBUG_TYPE values gdb-buildbot
2020-01-30 21:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-30 21:14 [binutils-gdb] Identify reproducible builds in 'objdump -p' output for PE files gdb-buildbot
2020-01-31 0:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-30 23:32 [binutils-gdb] ubsan: m32c: left shift of negative value gdb-buildbot
2020-01-31 2:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-31 1:50 [binutils-gdb] OOM in setup_group gdb-buildbot
2020-01-31 4:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-31 5:30 [binutils-gdb] gdb/tui: Update help text for scroll commands gdb-buildbot
2020-01-31 11:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-31 8:07 [binutils-gdb] gdb/tui: Disassembler scrolling of very small programs gdb-buildbot
2020-01-31 12:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-31 11:27 [binutils-gdb] Fix ravenscar-thread.c for multi-target gdb-buildbot
2020-01-31 14:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-31 14:28 [binutils-gdb] aarch64: Fix MOVPRFX markup for bf16 conversions gdb-buildbot
2020-01-31 17:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-31 16:23 [binutils-gdb] x86: drop unused EXVexWdq / vex_w_dq_mode gdb-buildbot
2020-01-31 19:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-31 18:42 [binutils-gdb] x86: replace EXxmm_mdq by EXVexWdqScalar gdb-buildbot
2020-01-31 22:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-01-31 23:56 [binutils-gdb] [gdb/testsuite] Fix typo in gdb.server/server-kill-python.exp gdb-buildbot
2020-02-01 2:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-01 1:58 [binutils-gdb] gdb: Do not print empty-group regs when printing general ones gdb-buildbot
2020-02-01 6:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-01 14:47 [binutils-gdb] Move pending obsolete targets onto the definitely obsolete list gdb-buildbot
2020-02-01 16:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-03 1:44 [binutils-gdb] ELF: Add support for unique section ID to assembler gdb-buildbot
2020-02-03 1:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-03 3:18 [binutils-gdb] section.c: Fix typo in comments (withe -> with) gdb-buildbot
2020-02-03 5:51 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-03 11:10 [binutils-gdb] Fix compilation error with musl in gdb/testsuite/gdb.base/fileio.c gdb-buildbot
2020-02-03 11:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-03 13:01 [binutils-gdb] RISC-V/Linux/native: Determine FLEN dynamically gdb-buildbot
2020-02-03 13:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-04 2:02 [binutils-gdb] Fixed gdb to print arrays with very high indexes gdb-buildbot
2020-02-04 2:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-04 4:19 [binutils-gdb] gdb: fix powerpc disassembly tests gdb-buildbot
2020-02-04 4:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-04 6:24 [binutils-gdb] ubsan: d30v: negation of -2147483648 gdb-buildbot
2020-02-04 6:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-04 8:58 [binutils-gdb] Change ints to bools around thread_info executing/resumed gdb-buildbot
2020-02-04 12:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-04 10:50 [binutils-gdb] [gdb/testsuite] Use non-capturing parentheses for inferior_exited_re gdb-buildbot
2020-02-04 15:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-04 12:16 [binutils-gdb] Minor fix for R_PPC_VLE_ADDR20 gdb-buildbot
2020-02-04 17:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-04 17:17 [binutils-gdb] [gdb/testsuite] Make inferior_exited_re match a single line gdb-buildbot
2020-02-04 18:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-04 18:25 [binutils-gdb] [gdb/testsuite] Add note to 'Race detection' entry in README gdb-buildbot
2020-02-04 21:51 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-04 20:26 [binutils-gdb] gdb/sim: Assert that the simulator ptid is not null_ptid gdb-buildbot
2020-02-05 0:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-04 23:00 [binutils-gdb] gdb/fortran: Allow for using Flang in Fortran testing gdb-buildbot
2020-02-05 4:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-05 1:05 [binutils-gdb] Re: Support fusion for ELFv2 stubs gdb-buildbot
2020-02-05 15:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-05 18:15 [binutils-gdb] RISC-V/Linux/native: Factor out target description determination gdb-buildbot
2020-02-05 18:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-05 21:46 [binutils-gdb] Fix base class function call gdb-buildbot
2020-02-06 0:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-06 2:38 [binutils-gdb] Disambiguate info_print_options gdb-buildbot
2020-02-06 2:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-06 14:16 [binutils-gdb] V850/BFD: Fix uninitialized `insn[4]' with R_V850_LONGJUMP warning gdb-buildbot
2020-02-06 14:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-06 19:07 [binutils-gdb] gdb/testsuite: Avoid leaking a port number into results summary gdb-buildbot
2020-02-06 19:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-06 20:58 [binutils-gdb] gdb: Catch exceptions if the source file is not found gdb-buildbot
2020-02-06 23:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-06 23:47 [binutils-gdb] sim/aarch64: Fix register ordering bug in blr (PR sim/25318) gdb-buildbot
2020-02-07 1:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-07 2:57 [binutils-gdb] ELF: Support the section flag 'o' in .section directive gdb-buildbot
2020-02-07 3:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-07 13:39 [binutils-gdb] Stop the BFD library from complaining if a segment has no sections attached to it gdb-buildbot
2020-02-07 13:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-07 15:53 [binutils-gdb] Add support for the GBZ80 and Z80N variants of the Z80 architecture, and add DWARF debug info support to the Z80 assembler gdb-buildbot
2020-02-07 16:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-21 16:05 [binutils-gdb] Have testsuite find gdbserver in new location gdb-buildbot
2020-02-21 21:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-22 2:10 [binutils-gdb] Change gdbserver to use existing gnulib and libiberty gdb-buildbot
2020-02-22 1:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-22 19:07 [binutils-gdb] Re: x86: Don't disable SSE4a when disabling SSE4 gdb-buildbot
2020-02-22 19:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-22 21:19 [binutils-gdb] x86: Don't disable SSE3 when disabling SSE4a gdb-buildbot
2020-02-22 21:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-23 0:04 [binutils-gdb] x86/Intel: improve diagnostics for ambiguous VCVT* operands gdb-buildbot
2020-02-23 0:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-23 2:25 [binutils-gdb] x86: fold AddrPrefixOpReg templates gdb-buildbot
2020-02-23 2:21 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-23 4:51 [binutils-gdb] x86: fold certain VCVT{,U}SI2S{S,D} templates gdb-buildbot
2020-02-23 4:51 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-23 7:26 [binutils-gdb] x86: Remove CpuABM and add CpuPOPCNT gdb-buildbot
2020-02-23 7:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-23 11:31 [binutils-gdb] [gdb/testsuite] Handle missing gnatmake in gnat_runtime_has_debug_info gdb-buildbot
2020-02-23 11:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-23 13:38 [binutils-gdb] gdb: update email address for Palmer Dabbelt gdb-buildbot
2020-02-23 13:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-23 16:07 [binutils-gdb] Fix build with gcc-4.8.x gdb-buildbot
2020-02-23 16:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-23 18:51 [binutils-gdb] gdb: fix printing of flag enums with multi-bit enumerators gdb-buildbot
2020-02-23 18:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-24 2:18 [binutils-gdb] gdb: change print format of flag enums with value 0 gdb-buildbot
2020-02-24 2:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-24 5:36 [binutils-gdb] [gdb/testsuite] Be quiet about untested dtrace-prob.exp gdb-buildbot
2020-02-24 5:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-24 6:35 [binutils-gdb] gdb/riscv: Update API for looking up target descriptions gdb-buildbot
2020-02-24 6:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-24 9:10 [binutils-gdb] gdbserver: Add RISC-V/Linux support gdb-buildbot
2020-02-24 8:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-24 13:30 [binutils-gdb] bfd_size_type to size_t gdb-buildbot
2020-02-24 13:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-24 18:26 [binutils-gdb] bfd_get_file_size calls gdb-buildbot
2020-02-24 18:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-24 21:02 [binutils-gdb] bfd_get_size cache gdb-buildbot
2020-02-24 21:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-25 0:38 [binutils-gdb] alloc2 used unnecessarily gdb-buildbot
2020-02-25 0:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-25 5:39 [binutils-gdb] _bfd_mul_overflow gdb-buildbot
2020-02-25 5:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-25 8:24 [binutils-gdb] Miscellaneous memory alloc related fixes gdb-buildbot
2020-02-25 8:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-25 10:26 [binutils-gdb] _bfd_alloc_and_read gdb-buildbot
2020-02-25 11:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-25 15:19 [binutils-gdb] [gdb/testsuite] Ignore pass in gdb_caching_proc gdb-buildbot
2020-02-25 15:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-25 17:41 [binutils-gdb] [gdb/testsuite] Be quiet about missing prelink in solib-overlap.exp gdb-buildbot
2020-02-25 18:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-25 20:31 [binutils-gdb] plugin: Call dlclose before return in try_load_plugin gdb-buildbot
2020-02-25 19:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-25 22:32 [binutils-gdb] [gdb/testsuite] Fix c++/14186 kpass in cpexprs.exp gdb-buildbot
2020-02-25 22:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-26 1:04 [binutils-gdb] Remove useless NULL check in python.c gdb-buildbot
2020-02-26 2:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-26 5:49 [binutils-gdb] Various fixes for the Z80 support gdb-buildbot
2020-02-26 5:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-26 7:54 [binutils-gdb] Merge changes from GCC for the config/ directory gdb-buildbot
2020-02-26 7:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-26 10:06 [binutils-gdb] Use obstack_strdup in ada-lang.c gdb-buildbot
2020-02-26 9:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-26 12:19 [binutils-gdb] Fix declaration of mips_pc_is_mips gdb-buildbot
2020-02-26 11:49 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-26 14:37 [binutils-gdb] [gdb/testsuite] Fix corefile-buildid.exp with check-read1 gdb-buildbot
2020-02-26 14:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-26 17:26 [binutils-gdb] rust/25535 Apply embedded offset to enum variant calculation gdb-buildbot
2020-02-26 16:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-26 21:36 [binutils-gdb] [gdb/testsuite] Fix funcall_ref.exp xpass gdb-buildbot
2020-02-26 21:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-27 0:16 [binutils-gdb] [gdb/testsuite] Fix xpass in gdb.python/lib-types.exp gdb-buildbot
2020-02-27 0:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-27 2:55 [binutils-gdb] RISC-V: Convert the ADD/ADDI to the compressed MV/LI if RS1 is zero gdb-buildbot
2020-02-27 2:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-27 6:30 [binutils-gdb] Regen with blessed automake-1.15.1 gdb-buildbot
2020-02-27 6:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-27 8:46 [binutils-gdb] [gdb/testsuite] Handle missing gccgo gdb-buildbot
2020-02-27 8:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-27 13:47 [binutils-gdb] Stop the BFD library from automatically converting OS and PROC specific symbol section indicies to SHN_ABS, and provide a hook for backends to decide how such indicies should be processed gdb-buildbot
2020-02-27 13:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-27 15:59 [binutils-gdb] gdbserver: start turning the target ops vector into a class gdb-buildbot
2020-02-27 16:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-27 23:07 [binutils-gdb] gdbserver: turn target op 'attach' into a method gdb-buildbot
2020-02-27 23:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-28 6:09 [binutils-gdb] gdbserver: turn target op 'mourn' into a method gdb-buildbot
2020-02-28 5:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-28 9:03 [binutils-gdb] gdbserver: turn target op 'join' into a method gdb-buildbot
2020-02-28 8:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-28 13:18 [binutils-gdb] gdbserver: turn target op 'resume' into a method gdb-buildbot
2020-02-28 13:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-28 15:31 [binutils-gdb] gdbserver: turn target op 'wait' into a method gdb-buildbot
2020-02-28 15:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-28 19:58 [binutils-gdb] gdbserver: turn prepare_to_access_memory & done_accessing_memory into methods gdb-buildbot
2020-02-28 19:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-28 22:39 [binutils-gdb] gdbserver: turn target ops 'read_memory' and 'write_memory' into methods gdb-buildbot
2020-02-28 22:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-29 1:09 [binutils-gdb] gdbserver: turn target op 'look_up_symbols' into a method gdb-buildbot
2020-02-29 0:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-29 5:35 [binutils-gdb] gdbserver: turn target op 'read_auxv' into a method gdb-buildbot
2020-02-29 5:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-29 8:01 [binutils-gdb] gdbserver: turn target op 'supports_z_point_type' into a method gdb-buildbot
2020-02-29 7:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-29 10:25 [binutils-gdb] gdbserver: turn target ops 'insert_point' and 'remove_point' into methods gdb-buildbot
2020-02-29 10:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-29 14:30 [binutils-gdb] gdbserver: turn target op '{supports_}stopped_by_hw_breakpoint' into a method gdb-buildbot
2020-02-29 14:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-29 16:54 [binutils-gdb] gdbserver: turn target op 'supports_hardware_single_step' into a method gdb-buildbot
2020-02-29 16:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-29 19:44 [binutils-gdb] gdbserver: turn target ops 'stopped_by_watchpoint' and 'stopped_data_address' into methods gdb-buildbot
2020-02-29 19:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-02-29 23:58 [binutils-gdb] gdbserver: turn target op 'get_tls_address' into a method gdb-buildbot
2020-02-29 23:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-01 2:58 [binutils-gdb] gdbserver: turn target op 'hostio_last_error' into a method gdb-buildbot
2020-03-01 2:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-01 4:32 [binutils-gdb] gdbserver: turn target op 'qxfer_osdata' into a method gdb-buildbot
2020-03-01 4:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-01 7:16 [binutils-gdb] gdbserver: turn target op 'qxfer_siginfo' into a method gdb-buildbot
2020-03-01 6:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-01 13:59 [binutils-gdb] gdbserver: turn target ops 'supports_{fork,vfork,exec}_events' into methods gdb-buildbot
2020-03-01 13:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-01 16:21 [binutils-gdb] gdbserver: turn target op 'handle_new_gdb_connection' into a method gdb-buildbot
2020-03-01 16:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-01 18:53 [binutils-gdb] gdbserver: turn target op 'handle_monitor_command' into a method gdb-buildbot
2020-03-01 18:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-01 20:56 [binutils-gdb] gdbserver: turn target op 'core_of_thread' into a method gdb-buildbot
2020-03-01 20:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-02 4:20 [binutils-gdb] gdbserver: turn target op 'supports_tracepoints' into a method gdb-buildbot
2020-03-02 4:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-02 6:10 [binutils-gdb] gdbserver: turn target ops 'read_pc' and 'write_pc' into methods gdb-buildbot
2020-03-02 6:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-02 8:30 [binutils-gdb] gdbserver: turn target op 'thread_stopped' into a method gdb-buildbot
2020-03-02 8:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-02 15:32 [binutils-gdb] gdbserver: turn target op 'stabilize_threads' into a method gdb-buildbot
2020-03-02 15:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-02 20:50 [binutils-gdb] gdbserver: turn target op 'emit_ops' into a method gdb-buildbot
2020-03-02 20:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-02 22:23 [binutils-gdb] gdbserver: turn target op 'supports_disable_randomization' into a method gdb-buildbot
2020-03-02 22:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-03 0:51 [binutils-gdb] gdbserver: turn target op 'qxfer_libraries_svr4' into a method gdb-buildbot
2020-03-03 0:51 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-03 3:18 [binutils-gdb] gdbserver: turn target op 'supports_agent' into a method gdb-buildbot
2020-03-03 3:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-03 5:38 [binutils-gdb] gdbserver: turn btrace-related target ops into methods gdb-buildbot
2020-03-03 5:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-03 10:31 [binutils-gdb] gdbserver: turn target op 'pid_to_exec_file' into a method gdb-buildbot
2020-03-03 10:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-03 17:14 [binutils-gdb] gdbserver: turn target ops 'thread_name' and 'thread_handle' into methods gdb-buildbot
2020-03-03 16:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-04 4:47 [binutils-gdb] gdbserver: finish turning the target ops vector into a class gdb-buildbot
2020-03-04 4:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-04 7:35 [binutils-gdb] [gdb/testsuite] Fix hello.go xpass gdb-buildbot
2020-03-04 7:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-04 12:20 [binutils-gdb] PR25569, PDP11 ld -s clobbers last data byte gdb-buildbot
2020-03-04 12:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-04 14:10 [binutils-gdb] RISC-V: Support the ISA-dependent CSR checking gdb-buildbot
2020-03-04 14:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-04 19:29 [binutils-gdb] gdb/testsuite: Regenerate the testglue if it is not in gdb-buildbot
2020-03-04 19:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-05 6:26 [binutils-gdb] Fix two more mips-tdep.h declarations gdb-buildbot
2020-03-05 6:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-05 8:30 [binutils-gdb] [gdb/testsuite] Fix gdb.go/methods.exp gdb-buildbot
2020-03-05 8:33 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-05 13:39 [binutils-gdb] Add a mostlyclean target to gdbserver gdb-buildbot
2020-03-05 14:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-06 4:56 [binutils-gdb] Use TUI_DISASM_WIN instead of tui_win_list array gdb-buildbot
2020-03-06 9:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-06 6:39 [binutils-gdb] Simplify tui_add_win_to_layout gdb-buildbot
2020-03-06 11:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-06 10:32 [binutils-gdb] Simplify TUI C-x 2 binding gdb-buildbot
2020-03-06 16:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-06 12:45 [binutils-gdb] Reimplement TUI "C-x 1" binding gdb-buildbot
2020-03-06 18:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-06 15:05 [binutils-gdb] Reimplement "tui reg" command gdb-buildbot
2020-03-06 20:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
[not found] <7c043ba695a3cee067554b1e871e60f7934512b4@gdb-build>
2020-03-07 10:13 ` gdb-buildbot
2020-03-07 12:15 [binutils-gdb] TUI windows do not need to store their type gdb-buildbot
2020-03-07 21:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
[not found] <eb9c88745686d46c5100bdf1c2f112d699c7f702@gdb-build>
2020-03-07 14:53 ` gdb-buildbot
2020-03-07 15:39 [binutils-gdb] Allow TUI windows in Python gdb-buildbot
2020-03-08 0:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
[not found] <e098d18cfc12c750616b7c934b9a9057f71f3553@gdb-build>
2020-03-07 17:13 ` gdb-buildbot
2020-03-07 17:37 [binutils-gdb] Make some tui_source_window_base members "protected" gdb-buildbot
2020-03-08 3:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-07 21:10 [binutils-gdb] Add "usage" text to all TUI command help gdb-buildbot
2020-03-08 7:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-07 23:21 [binutils-gdb] Fix cast in TUI_DISASM_WIN gdb-buildbot
2020-03-08 10:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-08 1:16 [binutils-gdb] Make dwarf2_compile_expr_to_ax static gdb-buildbot
2020-03-08 12:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-08 3:04 [binutils-gdb] gdb: update gnulib import gdb-buildbot
2020-03-08 14:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-08 8:47 [binutils-gdb] [gdb/testsuite] Fix layout next/prev/regs help message gdb-buildbot
2020-03-08 21:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-08 10:45 [binutils-gdb] [gdb] Ensure listing of unused static var in info locals gdb-buildbot
2020-03-09 0:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-08 12:39 [binutils-gdb] Simplify setting of reading_partial_symbols gdb-buildbot
2020-03-09 2:21 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-08 16:48 [binutils-gdb] Fix a memory leak and remove an unused member gdb-buildbot
2020-03-09 7:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-08 20:07 [binutils-gdb] Move dwarf2_get_die_type declaration to dwarf2/read.h gdb-buildbot
2020-03-09 11:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-08 21:54 [binutils-gdb] [gdb/testsuite] Remove gcc/93866 xfail in methods.exp gdb-buildbot
2020-03-09 13:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-09 0:27 [binutils-gdb] [ARC][committed] Update int_vector_base aux register gdb-buildbot
2020-03-09 16:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-09 1:53 [binutils-gdb] Don't call lto-wrapper for ar and ranlib gdb-buildbot
2020-03-09 18:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-09 3:14 [binutils-gdb] gdb/testsuite: Remove source file path from test name gdb-buildbot
2020-03-09 20:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-09 7:07 [binutils-gdb] gdb/fortran: Support negative array stride in one limited case gdb-buildbot
2020-03-10 1:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-09 8:56 [binutils-gdb] Merge upstream GCC changes for include/ and libiberty/ directories gdb-buildbot
2020-03-10 3:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-09 13:09 [binutils-gdb] PR25593, --as-needed breaks DT_NEEDED order with linker plugin gdb-buildbot
2020-03-10 8:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-09 17:32 [binutils-gdb] rx: memory allocation without checking for NULL return gdb-buildbot
2020-03-10 13:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-09 19:31 [binutils-gdb] Move dwarf2_read_addr_index declaration to dwarf2/read.h gdb-buildbot
2020-03-10 15:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-09 21:24 [binutils-gdb] Re: vms buffer overflows and large memory allocation gdb-buildbot
2020-03-10 17:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-09 23:11 [binutils-gdb] Archive sanity checks gdb-buildbot
2020-03-10 20:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-10 3:17 [binutils-gdb] Move more declarations from dwarf2/loc.h to dwarf2/read.h gdb-buildbot
2020-03-11 0:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-10 5:36 [binutils-gdb] gdb: print thread names in thread apply command output gdb-buildbot
2020-03-11 3:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-10 7:05 [binutils-gdb] Add debuginfod support to GDB gdb-buildbot
2020-03-11 5:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-10 9:09 [binutils-gdb] Remove casts from dwarf2/index-write.c gdb-buildbot
2020-03-11 8:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-10 9:35 [binutils-gdb] Specialize partial_symtab for DWARF include files gdb-buildbot
2020-03-11 8:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-10 13:06 [binutils-gdb] bfd_stat_arch_elt buffer overflow gdb-buildbot
2020-03-11 12:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-10 17:14 [binutils-gdb] [gdb/testsuite] Fix spawn in tuiterm.exp gdb-buildbot
2020-03-11 17:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-10 21:30 [binutils-gdb] gdb: Use std::abs instead of abs on LONGEST types gdb-buildbot
2020-03-11 21:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-10 23:52 [binutils-gdb] .idata symbols should be reported with i or I flag by nm gdb-buildbot
2020-03-12 0:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-11 3:44 [binutils-gdb] Remove field_info::nfields member gdb-buildbot
2020-03-12 7:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-11 5:38 [binutils-gdb] gdb: Check for nullptr when computing srcpath gdb-buildbot
2020-03-12 9:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-11 9:19 [binutils-gdb] alpha-vms: memory leak gdb-buildbot
2020-03-12 14:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-11 12:58 [binutils-gdb] [gdb/testsuite] Fix psymtab expansion postponement in c-linkage-name.exp gdb-buildbot
2020-03-12 19:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-11 15:19 [binutils-gdb] Pass correct die_reader_specs in cutu_reader::init_tu_and_read_dwo_dies gdb-buildbot
2020-03-12 21:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-11 17:21 [binutils-gdb] [gdb] Don't set initial language using previous language gdb-buildbot
2020-03-13 1:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-11 19:08 [binutils-gdb] Fix gdb.arch/aarch64-dbreg-contents.exp build failures gdb-buildbot
2020-03-13 3:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-11 21:36 [binutils-gdb] Fix SVE-related failure in gdb.arch/aarch64-fp.exp gdb-buildbot
2020-03-13 6:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-11 23:24 [binutils-gdb] Fix comment for 'gdb_dlopen' gdb-buildbot
2020-03-13 8:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-12 4:49 [binutils-gdb] Update libinproctrace.so path in lib/trace-support.exp gdb-buildbot
2020-03-13 10:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-12 12:45 [binutils-gdb] alpha-vms: error paths not freeing memory and malloc result checks gdb-buildbot
2020-03-13 23:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-12 15:00 [binutils-gdb] alpha-vms: prevent endless recursion gdb-buildbot
2020-03-14 1:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-12 19:09 [binutils-gdb] elf_backend_section_flags and _bfd_elf_init_private_section_data gdb-buildbot
2020-03-14 6:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-12 22:22 [binutils-gdb] ELF SEC_SMALL_DATA gdb-buildbot
2020-03-14 8:45 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-13 0:14 [binutils-gdb] miscellaneous SEC_SMALL_DATA gdb-buildbot
2020-03-14 11:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-13 5:52 [binutils-gdb] trad_unix_core_file_p: Return bfd_cleanup gdb-buildbot
2020-03-14 18:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-13 7:45 [binutils-gdb] gdb: Move defs.h before any system header in debuginfod-support.c gdb-buildbot
2020-03-14 20:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-13 12:13 [binutils-gdb] Re: bfd_cleanup for object_p gdb-buildbot
2020-03-15 1:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-13 13:34 [binutils-gdb] [gdb/testsuite] Add -lbl option in gdb_test_multiple gdb-buildbot
2020-03-15 3:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-13 18:10 [binutils-gdb] gdb/remote: Restore support for 'S' stop reply packet gdb-buildbot
2020-03-15 8:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-13 20:14 [binutils-gdb] Fix arm-netbsd build error: convert from FPA to VFP gdb-buildbot
2020-03-15 10:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-13 22:01 [binutils-gdb] gdb: Allow GDB to _not_ load a previous command history gdb-buildbot
2020-03-15 12:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-14 0:55 [binutils-gdb] Small clean up of use_displaced_stepping gdb-buildbot
2020-03-15 15:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-14 2:47 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp with check-read1 gdb-buildbot
2020-03-15 17:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-14 4:33 [binutils-gdb] [gdb/testsuite] Fix tcl error in gdb.mi/list-thread-groups-available.exp gdb-buildbot
2020-03-15 19:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-14 6:22 [binutils-gdb] [gdb/testsuite] Fix gdb.mi/gdb2549.exp with check-read1 gdb-buildbot
2020-03-15 22:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-14 8:26 [binutils-gdb] bfd_check_format_matches preserving matches vs. cleanups gdb-buildbot
2020-03-16 0:33 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-14 12:06 [binutils-gdb] Update GDB to use new AUXV entry types gdb-buildbot
2020-03-16 5:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-14 18:03 [binutils-gdb] The patch fixed invalid compilation of instruction LD IY, (HL) and disassemble of this and LD (HL), IX instruction. Also it update testsuit gdb-buildbot
2020-03-16 12:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-14 19:45 [binutils-gdb] Rebase executable to match relocated base address gdb-buildbot
2020-03-16 14:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-14 23:19 [binutils-gdb] x86: Replace IgnoreSize/DefaultSize with MnemonicSize gdb-buildbot
2020-03-16 19:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-15 1:38 [binutils-gdb] gdbsupport: re-generate Makefile.in gdb-buildbot
2020-03-16 21:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-15 3:17 [binutils-gdb] Find tailcall frames before inline frames gdb-buildbot
2020-03-17 0:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-15 9:06 [binutils-gdb] x86: support VMGEXIT gdb-buildbot
2020-03-17 6:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-15 12:56 [binutils-gdb] Revert "gdb: Do not print empty-group regs when printing general ones" gdb-buildbot
2020-03-17 11:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-15 16:46 [binutils-gdb] Make "gnutarget" const gdb-buildbot
2020-03-17 16:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-15 18:34 [binutils-gdb] Introduce objfile::intern gdb-buildbot
2020-03-17 18:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-16 0:44 [binutils-gdb] gdb, gdbserver, gdbsupport: add .gitattributes files gdb-buildbot
2020-03-18 1:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-16 2:46 [binutils-gdb] Add support for ELF files which contain multiple reloc sections which all target the same section gdb-buildbot
2020-03-18 3:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-16 4:30 [binutils-gdb] gdbsupport/configure.ac: source development.sh gdb-buildbot
2020-03-18 5:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-16 8:32 [binutils-gdb] bfd: xtensa: fix PR ld/25630 gdb-buildbot
2020-03-18 10:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-16 12:46 [binutils-gdb] x86: add missing IgnoreSize gdb-buildbot
2020-03-18 15:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-16 14:43 [binutils-gdb] x86: correct MPX insn w/o base or index encoding in 16-bit mode gdb-buildbot
2020-03-18 17:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-16 16:33 [binutils-gdb] x86: drop Rex64 attribute gdb-buildbot
2020-03-18 19:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-16 18:49 [binutils-gdb] x86: replace NoRex64 on VEX-encoded insns gdb-buildbot
2020-03-18 22:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-16 21:27 [binutils-gdb] x86: drop/replace IgnoreSize gdb-buildbot
2020-03-19 2:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-17 4:48 [binutils-gdb] gdbserver/gdbsupport: Add .dir-locals.el file gdb-buildbot
2020-03-19 9:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-17 7:08 [binutils-gdb] [gdb] Remove trailing "done" after "Reading symbols from" message gdb-buildbot
2020-03-19 11:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-17 10:47 [binutils-gdb] [gdb/testsuite] Fix "text file busy" errors with cc-with-tweaks.exp gdb-buildbot
2020-03-19 16:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-17 14:51 [binutils-gdb] Pass thread_info pointer to various inferior control functions gdb-buildbot
2020-03-20 1:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-17 19:25 [binutils-gdb] [gdb] Support anonymous typedef generated by gcc -feliminate-dwarf2-dups gdb-buildbot
2020-03-20 6:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-18 8:37 [binutils-gdb] asan: wasm: Out-of-memory gdb-buildbot
2020-03-21 1:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-18 14:40 [binutils-gdb] x86: use template for AVX/AVX512 floating point comparison insns gdb-buildbot
2020-03-21 8:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-18 16:28 [binutils-gdb] x86: use template for XOP integer comparison, shift, and rotate insns gdb-buildbot
2020-03-21 10:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-18 19:14 [binutils-gdb] x86: use template for AVX512 integer comparison insns gdb-buildbot
2020-03-21 12:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-18 20:59 [binutils-gdb] [gdb/testsuite] Fix tcl error in cached_file gdb-buildbot
2020-03-21 15:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-18 22:47 [binutils-gdb] x86: Also pass -P to $(CPP) when processing i386-opc.tbl gdb-buildbot
2020-03-21 17:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-19 1:00 [binutils-gdb] PR25648, objcopy SIGSEGV in ihex_write_record gdb-buildbot
2020-03-21 19:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-19 2:47 [binutils-gdb] ubsan: som: left shift of 1 by 31 places gdb-buildbot
2020-03-21 22:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-19 5:08 [binutils-gdb] gdb/testsuite: Add is-stmt support to the DWARF compiler gdb-buildbot
2020-03-22 0:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-19 6:48 [binutils-gdb] gdb: Add support for tracking the DWARF line table is-stmt field gdb-buildbot
2020-03-22 2:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-19 12:51 [binutils-gdb] libctf: Mark bswap_identity_64 inline function as static gdb-buildbot
2020-03-22 9:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-19 18:52 [binutils-gdb] gdb: Fix out of bounds array access in buildsym_compunit::record_line gdb-buildbot
2020-03-22 14:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-19 22:11 [binutils-gdb] [gdb/testsuite] Fix missing uint8_t in gdb.fortran/logical.exp gdb-buildbot
2020-03-22 16:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-20 0:54 [binutils-gdb] asan: som: unknown read gdb-buildbot
2020-03-22 18:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-20 5:10 [binutils-gdb] [gdb/testsuite] Fix FAILs due to verbose in foll-fork.exp gdb-buildbot
2020-03-22 23:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-20 14:48 [binutils-gdb] [gdb/testsuite] Fix printf regexp in gdb.server/sysroot.exp gdb-buildbot
2020-03-23 8:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-20 23:23 [binutils-gdb] Avoid infinite recursion in find_pc_sect_line gdb-buildbot
2020-03-23 17:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-21 3:19 [binutils-gdb] [gdb/testsuite] Use string_to_regexp on core filename in gdb_core_cmd gdb-buildbot
2020-03-23 22:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-21 5:30 [binutils-gdb] [gdb/testsuite] Fix gdb.linespec/explicit.exp FAIL with glibc debug info gdb-buildbot
2020-03-24 0:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-21 7:15 [binutils-gdb] [gdb/testsuite] Fix dw2-ranges-base.exp FAIL with lib debuginfo gdb-buildbot
2020-03-24 2:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-21 9:02 [binutils-gdb] [gdb/testsuite] Fix internal buffer full error in gdb.fortran/module.exp gdb-buildbot
2020-03-24 5:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-21 10:50 [binutils-gdb] [gdb/testsuite] Avoid breakpoint in GLIBC in gdb.threads/execl.exp gdb-buildbot
2020-03-24 7:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-21 14:51 [binutils-gdb] sim: ppc: netbsd: Sync errno codes with NetBSD 9.99.49 gdb-buildbot
2020-03-24 12:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-21 18:48 [binutils-gdb] Remove use of deprecated core functions (in NetBSD/ARM) gdb-buildbot
2020-03-24 17:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-21 22:48 [binutils-gdb] Move sourcing of development.sh to GDB_AC_COMMON gdb-buildbot
2020-03-24 23:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-22 2:23 [binutils-gdb] Move gdb/selftest.m4 to gdbsupport/selftest.m4 gdb-buildbot
2020-03-25 4:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-22 4:09 [binutils-gdb] gdb: make gdb.arch/amd64-disp-step-avx.exp actually test displaced stepping gdb-buildbot
2020-03-25 6:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-22 6:26 [binutils-gdb] gdb: use foreach_with_prefix in gdb.base/break-interp.exp gdb-buildbot
2020-03-25 8:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-22 11:51 [binutils-gdb] Cast to bfd_vma in arm-tdep.c gdb-buildbot
2020-03-25 15:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-22 17:57 [binutils-gdb] Change gdbserver to use existing gdbsupport gdb-buildbot
2020-03-26 0:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-22 22:06 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL in gdb.tui/corefile-run.exp gdb-buildbot
2020-03-26 5:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-22 23:54 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp matching FAILs gdb-buildbot
2020-03-26 7:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-23 1:42 [binutils-gdb] Fix several mix up between octets and bytes in ELF program headers gdb-buildbot
2020-03-26 10:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-23 3:28 [binutils-gdb] Fix several mix up between octets and bytes in ELF program headers gdb-buildbot
2020-03-26 12:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-23 5:54 [binutils-gdb] [gdb/symtab] Fix partial unit psymtabs gdb-buildbot
2020-03-26 14:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-23 8:01 [binutils-gdb] x86-64: correct mis-named X86_64_0D enumerator gdb-buildbot
2020-03-26 16:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-23 9:45 [binutils-gdb] Recognize aarch64 PT_GETREGS and PT_GETFPREGS notes on NetBSD gdb-buildbot
2020-03-26 19:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-23 11:33 [binutils-gdb] [gdb/testsuite] Fix mi-sym-info.exp matching FAILs (2) gdb-buildbot
2020-03-26 21:33 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-23 14:06 [binutils-gdb] [gdb/testsuite] Fix buffer full errors in gdb.mi/mi-sym-info.exp gdb-buildbot
2020-03-26 23:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-23 15:30 [binutils-gdb] x86: Check static link of dynamic objects gdb-buildbot
2020-03-27 2:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-23 17:59 [binutils-gdb] Add support for non-contiguous memory regions gdb-buildbot
2020-03-27 4:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-23 22:34 [binutils-gdb] Implement NT_NETBSDCORE_LWPSTATUS (NetBSD-Core) gdb-buildbot
2020-03-27 8:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-24 0:20 [binutils-gdb] gdb/testsuite: Remove paths and make test names unique gdb-buildbot
2020-03-27 11:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-24 2:07 [binutils-gdb] Use scoped_value_mark in value_print gdb-buildbot
2020-03-27 13:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-24 4:26 [binutils-gdb] Refactor val_print and common_val_print gdb-buildbot
2020-03-27 15:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-24 6:13 [binutils-gdb] Introduce common_val_print_checked gdb-buildbot
2020-03-27 18:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-24 8:13 [binutils-gdb] Use common_val_print in infcmd.c gdb-buildbot
2020-03-27 20:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-24 12:24 [binutils-gdb] Use common_val_print in riscv-tdep.c gdb-buildbot
2020-03-28 1:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-24 14:16 [binutils-gdb] Use common_val_print in f-valprint.c gdb-buildbot
2020-03-28 5:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-24 20:04 [binutils-gdb] Use common_val_print in c-valprint.c gdb-buildbot
2020-03-28 10:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-24 22:28 [binutils-gdb] Introduce la_value_print_inner gdb-buildbot
2020-03-28 12:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-25 0:45 [binutils-gdb] Introduce generic_value_print gdb-buildbot
2020-03-28 14:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-25 2:33 [binutils-gdb] Introduce value_print_scalar_formatted gdb-buildbot
2020-03-28 17:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-25 8:18 [binutils-gdb] Simplify c_val_print_array gdb-buildbot
2020-03-29 2:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-25 12:26 [binutils-gdb] Introduce c_value_print_inner gdb-buildbot
2020-03-29 6:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-25 14:14 [binutils-gdb] Introduce m2_value_print_inner gdb-buildbot
2020-03-29 9:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-25 16:43 [binutils-gdb] Introduce pascal_value_print_inner gdb-buildbot
2020-03-29 11:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-25 18:31 [binutils-gdb] Introduce f_value_print_innner gdb-buildbot
2020-03-29 14:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-25 21:06 [binutils-gdb] Introduce ada_value_print_inner gdb-buildbot
2020-03-29 18:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-26 0:35 [binutils-gdb] Convert Rust printing to value-based API gdb-buildbot
2020-03-29 20:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-26 2:22 [binutils-gdb] Convert Go printing to value-based API gdb-buildbot
2020-03-29 23:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-26 4:40 [binutils-gdb] Convert D printing to value-based API gdb-buildbot
2020-03-30 1:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-26 6:14 [binutils-gdb] Convert Modula-2 printing to value-based API gdb-buildbot
2020-03-30 3:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-26 10:29 [binutils-gdb] Rewrite pascal_value_print_inner gdb-buildbot
2020-03-30 8:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-26 14:07 [binutils-gdb] Initial rewrite of generic_value_print gdb-buildbot
2020-03-30 12:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-26 16:47 [binutils-gdb] Introduce generic_value_print_ptr gdb-buildbot
2020-03-30 15:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-26 18:28 [binutils-gdb] Fix generic_val_print_enum for value-based printing gdb-buildbot
2020-03-30 17:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-26 20:56 [binutils-gdb] Remove generic_val_print_flags gdb-buildbot
2020-03-30 19:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-27 2:43 [binutils-gdb] Introduce generic_value_print_int gdb-buildbot
2020-03-31 2:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-27 6:54 [binutils-gdb] Simplify generic_val_print_float gdb-buildbot
2020-03-31 7:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-27 11:02 [binutils-gdb] Rewrite c_value_print_inner gdb-buildbot
2020-03-31 11:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-27 13:09 [binutils-gdb] Introduce c_value_print_ptr gdb-buildbot
2020-03-31 13:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-27 15:14 [binutils-gdb] Introduce c_value_print_int gdb-buildbot
2020-03-31 16:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-27 17:35 [binutils-gdb] Introduce c_value_print_memberptr gdb-buildbot
2020-03-31 18:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-27 19:29 [binutils-gdb] Introduce c_value_print_array gdb-buildbot
2020-03-31 21:21 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-27 21:17 [binutils-gdb] Introduce cp_print_value_fields and c_value_print_struct gdb-buildbot
2020-04-01 1:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-27 23:31 [binutils-gdb] Introduce cp_print_value gdb-buildbot
2020-04-01 3:45 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-28 2:53 [binutils-gdb] Rewrite ada_value_print_inner gdb-buildbot
2020-04-01 6:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-28 5:52 [binutils-gdb] Introduce ada_value_print_ptr gdb-buildbot
2020-04-01 8:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-28 8:03 [binutils-gdb] Rewrite ada_value_print_1 floating point case gdb-buildbot
2020-04-01 10:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-28 10:09 [binutils-gdb] Introduce ada_value_print_num gdb-buildbot
2020-04-01 12:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-28 11:56 [binutils-gdb] Convert ada_val_print_ref to value-based API gdb-buildbot
2020-04-01 15:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-28 16:05 [binutils-gdb] Introduce ada_value_print_array gdb-buildbot
2020-04-01 19:51 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-28 18:59 [binutils-gdb] Change print_field_values to use value-based API gdb-buildbot
2020-04-01 22:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-29 0:35 [binutils-gdb] Remove val_print gdb-buildbot
2020-04-02 2:49 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-29 2:27 [binutils-gdb] BFD_FAKE_SECTIONS formatting gdb-buildbot
2020-04-02 5:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-29 5:57 [binutils-gdb] [gdb/testsuite] Fix unrecognized debug output level 'statement-frontiers' message gdb-buildbot
2020-04-02 9:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-29 7:45 [binutils-gdb] Include netbsd-core.lo for all arm/mips NetBSD targets gdb-buildbot
2020-04-02 12:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-29 9:53 [binutils-gdb] Define _KERNTYPES in vax-bsd-nat.c gdb-buildbot
2020-04-02 14:33 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-29 11:26 [binutils-gdb] Define _KERNTYPES in ppc-nbsd-nat.c gdb-buildbot
2020-04-02 16:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-29 19:17 [binutils-gdb] Add explicit cast to fix build of vax-bsd-nat.c gdb-buildbot
2020-04-03 0:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-29 21:03 [binutils-gdb] Add support for threads in vax_bsd_nat_target gdb-buildbot
2020-04-03 4:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-29 23:15 [binutils-gdb] Add support for NetBSD threads in x86-bsd-nat.c gdb-buildbot
2020-04-03 6:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-30 1:01 [binutils-gdb] Inherit arm_netbsd_nat_target from nbsd_nat_target gdb-buildbot
2020-04-03 9:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-30 3:21 [binutils-gdb] Add support for NetBSD threads in arm-nbsd-nat.c gdb-buildbot
2020-04-03 11:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-30 4:57 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL in attach-many-short-lived-threads.exp gdb-buildbot
2020-04-03 13:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-30 6:46 [binutils-gdb] Define _KERNTYPES in alpha-bsd-nat.c gdb-buildbot
2020-04-03 15:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-30 9:08 [binutils-gdb] Inherit alpha_netbsd_nat_target from nbsd_nat_target gdb-buildbot
2020-04-03 18:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-30 12:51 [binutils-gdb] Add support for NetBSD threads in alpha-bsd-nat.c gdb-buildbot
2020-04-03 22:49 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-30 15:05 [binutils-gdb] Define _KERNTYPES in m68k-bsd-nat.c gdb-buildbot
2020-04-04 1:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-30 21:33 [binutils-gdb] Add support for NetBSD threads in m68k-bsd-nat.c gdb-buildbot
2020-04-04 8:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-31 1:34 [binutils-gdb] Add C parser support for "restrict" and "_Atomic" gdb-buildbot
2020-04-04 12:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-31 10:34 [binutils-gdb] [gdb/testsuite] Fix check-read1 FAIL with gdb.base/maint.exp gdb-buildbot
2020-04-05 1:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-31 13:25 [binutils-gdb] [gdb/testsuite] Fix solib-list.exp test-case for exec with debug-info gdb-buildbot
2020-04-05 3:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-31 18:35 [binutils-gdb] [gdb/testsuite] Add cache_verify option for gdb_caching_procs gdb-buildbot
2020-04-05 10:21 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-03-31 21:47 [binutils-gdb] gdb: recognize 64 bits Windows executables as Cygwin osabi gdb-buildbot
2020-04-05 12:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-01 2:03 [binutils-gdb] gdb: add Windows OS ABI gdb-buildbot
2020-04-05 17:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-01 4:52 [binutils-gdb] gdb: rename i386-cygwin-tdep.c to i386-windows-tdep.c gdb-buildbot
2020-04-05 19:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-01 6:45 [binutils-gdb] gdb: rename content of i386-windows-tdep.c, cygwin to windows gdb-buildbot
2020-04-05 21:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-01 9:01 [binutils-gdb] gdb: select "Cygwin" OS ABI for Cygwin binaries gdb-buildbot
2020-04-06 0:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-01 13:00 [binutils-gdb] Fix dwarf2_name caching bug gdb-buildbot
2020-04-06 4:45 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-01 15:10 [binutils-gdb] arc: Migrate to new target features gdb-buildbot
2020-04-06 7:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-01 21:17 [binutils-gdb] [gdb] Skip imports of c++ CUs gdb-buildbot
2020-04-06 13:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-02 1:33 [binutils-gdb] Include missing header to get missing declarations gdb-buildbot
2020-04-06 18:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-02 3:22 [binutils-gdb] Inherit sh_nbsd_nat_target from nbsd_nat_target gdb-buildbot
2020-04-06 20:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-02 7:41 [binutils-gdb] Remove a double free in the BFD library triggered when parsing a corrupt file gdb-buildbot
2020-04-07 1:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-02 11:48 [binutils-gdb] Replace a couple of assertions in the BFD library that can be triggered by attempts to parse corrupt input files gdb-buildbot
2020-04-07 6:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-02 14:31 [binutils-gdb] Add support for NetBSD threads in sparc-nat.c gdb-buildbot
2020-04-07 8:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-02 16:17 [binutils-gdb] Rename the read symbol to xread gdb-buildbot
2020-04-07 10:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-02 21:01 [binutils-gdb] Add support for NetBSD threads in amd64-bsd-nat.c gdb-buildbot
2020-04-07 15:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-02 22:55 [binutils-gdb] Add support for NetBSD threads in i386-bsd-nat.c gdb-buildbot
2020-04-07 17:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-03 2:49 [binutils-gdb] Namespace the reg class to avoid clashes with OS headers gdb-buildbot
2020-04-07 19:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-03 5:08 [binutils-gdb] Non-contiguous memory regions support: Avoid calls to abort gdb-buildbot
2020-04-07 22:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-03 6:49 [binutils-gdb] Fix seg-fault in strip when copying a file containing corrupt secondary relocs gdb-buildbot
2020-04-08 0:33 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-03 8:41 [binutils-gdb] [gdb/testsuite] Add test-case gdb.dwarf2/break-inline-psymtab.exp gdb-buildbot
2020-04-08 2:51 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-03 10:27 [binutils-gdb] Additional c99 elfxx-riscv.c fix gdb-buildbot
2020-04-08 5:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-03 12:47 [binutils-gdb] [gdb/testsuite] Fix gdb.opt/inline-locals.exp KFAILs gdb-buildbot
2020-04-08 7:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-03 14:34 [binutils-gdb] gdb: Restructure the completion_tracker class gdb-buildbot
2020-04-08 9:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-03 17:03 [binutils-gdb] gdb: Remove C++ symbol aliases from completion list gdb-buildbot
2020-04-08 12:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-03 18:52 [binutils-gdb] gdb/testsuite/fortran: Add mixed language stack test gdb-buildbot
2020-04-08 14:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-03 23:08 [binutils-gdb] Avoid get_ptrace_pid() usage on NetBSD in x86-bsd-nat.c gdb-buildbot
2020-04-08 18:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-04 1:42 [binutils-gdb] Fix assertion failure in the BFD library when called to parse a file containing corrupt ELF group information gdb-buildbot
2020-04-08 21:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-04 3:39 [binutils-gdb] [AArch64] When unavailable, fetch VG from ptrace gdb-buildbot
2020-04-08 23:49 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-04 5:30 [binutils-gdb] Include: Sync lto-symtab.h and plugin-api.h with GCC gdb-buildbot
2020-04-09 2:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-04 7:16 [binutils-gdb] Fix discrepancies in nm's --line-number output by adding support for the DW_AT_specification DWARF Attttribute gdb-buildbot
2020-04-09 4:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-04 9:04 [binutils-gdb] Disable get_ptrace_pid for NetBSD gdb-buildbot
2020-04-09 6:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-04 12:57 [binutils-gdb] PowerPC disassembly of odd sized sections gdb-buildbot
2020-04-09 11:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-04 18:44 [binutils-gdb] XCOFF uninitialized read gdb-buildbot
2020-04-09 18:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-04 22:44 [binutils-gdb] plugin: Don't invoke LTO-wrapper gdb-buildbot
2020-04-09 22:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-05 0:32 [binutils-gdb] Add support for NetBSD threads in ppc-nbsd-nat.c gdb-buildbot
2020-04-10 1:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-05 2:55 [binutils-gdb] [gdb/testsuite] Fix timeouts in gdb.threads/step-over-*.exp gdb-buildbot
2020-04-10 3:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-05 4:40 [binutils-gdb] Add support for NetBSD threads in hppa-nbsd-nat.c gdb-buildbot
2020-04-10 5:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-05 6:28 [binutils-gdb] Inherit ppc_nbsd_nat_target from nbsd_nat_target gdb-buildbot
2020-04-10 7:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-05 8:19 [binutils-gdb] Fix Ada val_print removal regression gdb-buildbot
2020-04-10 10:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-05 10:19 [binutils-gdb] Fix column alignment in "maint info line-table" gdb-buildbot
2020-04-10 12:33 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-05 11:56 [binutils-gdb] Avoid stringop-truncation errors gdb-buildbot
2020-04-10 14:51 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-05 16:01 [binutils-gdb] Update the return type of gdb_ptrace to be more flexible gdb-buildbot
2020-04-10 19:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-05 18:13 [binutils-gdb] gdb: remove HAVE_DECL_PTRACE gdb-buildbot
2020-04-10 21:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-05 20:00 [binutils-gdb] [gdb/testsuite] Fix gdb.threads/omp-par-scope.exp XPASS gdb-buildbot
2020-04-11 0:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-05 21:48 [binutils-gdb] Make dwarf2_evaluate_property parameter const gdb-buildbot
2020-04-11 2:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-06 13:12 [binutils-gdb] ARC: Use of uninitialised value gdb-buildbot
2020-04-11 21:49 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-06 15:42 [binutils-gdb] H8300 use of uninitialised value gdb-buildbot
2020-04-12 0:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-06 17:30 [binutils-gdb] XCOFF64 uninitialised read gdb-buildbot
2020-04-12 2:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-06 20:12 [binutils-gdb] gdb/testsuite: Remove hard coded addresses from expected results gdb-buildbot
2020-04-12 4:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-06 21:59 [binutils-gdb] i386msdos uninitialised read gdb-buildbot
2020-04-12 7:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-07 2:06 [binutils-gdb] Mention .tdata in comment in _bfd_elf_tls_setup() gdb-buildbot
2020-04-12 11:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-07 6:14 [binutils-gdb] [gdb] Print user for maint info psymtabs gdb-buildbot
2020-04-12 16:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-07 12:06 [binutils-gdb] bfd: Change num_group to unsigned int gdb-buildbot
2020-04-12 23:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-07 20:33 [binutils-gdb] Uninitialised memory read in z80-dis.c gdb-buildbot
2020-04-13 8:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-07 22:20 [binutils-gdb] bfd: Add a bfd_boolean argument to bfd_get_symbol_version_string gdb-buildbot
2020-04-13 10:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-08 2:30 [binutils-gdb] arc: Use correct string when printing bfd DEBUG data gdb-buildbot
2020-04-13 15:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-08 4:45 [binutils-gdb] gdb/riscv: Apply NaN boxing when writing return values into registers gdb-buildbot
2020-04-13 17:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-08 6:42 [binutils-gdb] [gdb] Print user/includes fields for maint commands gdb-buildbot
2020-04-13 19:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-08 10:50 [binutils-gdb] Fix WOW64 process system DLL paths gdb-buildbot
2020-04-14 0:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-08 17:03 [binutils-gdb] Re: ARC: Use of uninitialised value gdb-buildbot
2020-04-14 7:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-08 21:24 [binutils-gdb] Re: H8300 use of uninitialised value gdb-buildbot
2020-04-14 11:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-08 23:51 [binutils-gdb] Revert earlier delta adding bfd_coff_get_internal_extra_pe_aouthdr() function gdb-buildbot
2020-04-14 14:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-09 4:01 [binutils-gdb] Add dwz.c and dwz_file::read_string gdb-buildbot
2020-04-14 18:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-09 5:29 [binutils-gdb] Change dwarf_decode_macro_bytes calling convention gdb-buildbot
2020-04-14 21:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-09 11:35 [binutils-gdb] Convert dwarf2_section_buffer_overflow_complaint to a method gdb-buildbot
2020-04-15 4:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-09 13:46 [binutils-gdb] Add dwarf2_section_info::read_string method gdb-buildbot
2020-04-15 6:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-09 15:52 [binutils-gdb] Move code to new file dwarf2/macro.c gdb-buildbot
2020-04-15 8:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-09 18:12 [binutils-gdb] Make some line_header methods const gdb-buildbot
2020-04-15 10:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-09 22:15 [binutils-gdb] Use a const dwarf2_section_info in macro reader gdb-buildbot
2020-04-15 15:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-10 0:04 [binutils-gdb] Trivial fix in dwarf_decode_macro_bytes gdb-buildbot
2020-04-15 17:49 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-10 5:55 [binutils-gdb] Move more code to line-header.c gdb-buildbot
2020-04-15 22:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-10 11:01 [binutils-gdb] Remove dwarf2_cu::base_known gdb-buildbot
2020-04-16 2:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-10 12:55 [binutils-gdb] Change dwarf2_attr_no_follow to be a method gdb-buildbot
2020-04-16 5:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-10 15:27 [binutils-gdb] Remove sibling_die gdb-buildbot
2020-04-16 7:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-10 21:07 [binutils-gdb] Rewrite new die_info methods gdb-buildbot
2020-04-16 12:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-11 0:00 [binutils-gdb] Move DWARF-constant stringifying code to new file gdb-buildbot
2020-04-16 14:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-11 2:49 [binutils-gdb] Change two functions to be methods on struct attribute gdb-buildbot
2020-04-16 16:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-11 5:22 [binutils-gdb] Support AT_BSDFLAGS on FreeBSD gdb-buildbot
2020-04-16 19:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-11 10:01 [binutils-gdb] Always fix system DLL paths for 32bit programs gdb-buildbot
2020-04-16 23:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-11 14:29 [binutils-gdb] Fix comment in dwarf2/attribute.h gdb-buildbot
2020-04-17 4:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-12 4:35 [binutils-gdb] gdb: rename partial_symtab::read_dependencies to expand_dependencies gdb-buildbot
2020-04-17 19:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-12 7:18 [binutils-gdb] gdb: rename partial symtab expand functions of debug info readers using legacy_psymtab gdb-buildbot
2020-04-17 21:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-12 9:56 [binutils-gdb] PR25745, powerpc64-ld overflows string buffer in --stats mode gdb-buildbot
2020-04-17 23:49 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-12 11:59 [binutils-gdb] [gdb/testsuite] Fix c-linkage-name.exp with {cc-with-gdb-index, readnow}.exp gdb-buildbot
2020-04-18 2:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-12 14:39 [binutils-gdb] Add low_new_clone method to linux_nat_target gdb-buildbot
2020-04-18 4:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-12 19:51 [binutils-gdb] [PowerPC] Fix debug register issues in ppc-linux-nat gdb-buildbot
2020-04-18 9:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-12 22:23 [binutils-gdb] Fix objcopy's --preserve-dates command line option so that it will work with PE format files gdb-buildbot
2020-04-18 11:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-13 1:14 [binutils-gdb] Change ada_which_variant_applies to value API gdb-buildbot
2020-04-18 13:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-13 4:06 [binutils-gdb] RISC-V: Update CSR to privileged spec 1.11 gdb-buildbot
2020-04-18 15:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-13 11:14 [binutils-gdb] alpha-coff: unitialised read gdb-buildbot
2020-04-19 1:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-13 14:02 [binutils-gdb] [gdb/testsuite] Fix c-linkage-name.exp with -flto gdb-buildbot
2020-04-19 3:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-13 16:22 [binutils-gdb] Don't pass NULL to memcpy in gdb gdb-buildbot
2020-04-19 5:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-13 22:10 [binutils-gdb] mmo.c: Fix ld testsuite regression "objcopy executable (pr25662)" gdb-buildbot
2020-04-19 10:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-14 0:57 [binutils-gdb] include: Sync plugin-api.h with GCC gdb-buildbot
2020-04-19 12:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-14 3:40 [binutils-gdb] Arm: Fix thumb2 PLT branch offsets gdb-buildbot
2020-04-19 15:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-14 6:15 [binutils-gdb] Arm: Fix LSB of GOT for Thumb2 only PLT gdb-buildbot
2020-04-19 17:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-14 14:15 [binutils-gdb] gdb/remote: do not check for null_ptid in stop reply gdb-buildbot
2020-04-20 0:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-14 17:00 [binutils-gdb] Allow pointer arithmetic with integer references gdb-buildbot
2020-04-20 2:33 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-14 19:49 [binutils-gdb] gdb: define convenience function 'exists_non_stop_target' gdb-buildbot
2020-04-20 4:51 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-14 22:39 [binutils-gdb] gdb/infrun: stop all threads if there exists a non-stop target gdb-buildbot
2020-04-20 7:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-15 1:34 [binutils-gdb] Remove local variable from simple.rs test case gdb-buildbot
2020-04-20 9:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-15 4:22 [binutils-gdb] Move Rust union tests to new file gdb-buildbot
2020-04-20 11:45 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-15 9:52 [binutils-gdb] Add accessors for members of complex numbers gdb-buildbot
2020-04-20 16:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-15 15:38 [binutils-gdb] Change the C parser to allow complex constants gdb-buildbot
2020-04-20 21:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-15 18:33 [binutils-gdb] Implement complex arithmetic gdb-buildbot
2020-04-20 23:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-15 21:30 [binutils-gdb] Add _Complex type support to C parser gdb-buildbot
2020-04-21 1:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-16 6:02 [binutils-gdb] Fix the resizing condition of the line table gdb-buildbot
2020-04-21 8:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-16 8:49 [binutils-gdb] Fix an undefined behavior in record_line gdb-buildbot
2020-04-21 11:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-16 14:39 [binutils-gdb] [gdb/testsuite] Accept new complex print style in mixed-lang-stack.exp gdb-buildbot
2020-04-21 15:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-16 17:34 [binutils-gdb] [gdb] Use partial symbol table to find language for main gdb-buildbot
2020-04-21 17:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-16 20:26 [binutils-gdb] [gdb/ada] Fix -readnow FAILs gdb-buildbot
2020-04-21 20:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-16 23:19 [binutils-gdb] [gdb/testsuite] Fix silent timeout in gdb.multi/multi-target.exp gdb-buildbot
2020-04-21 22:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-17 2:10 [binutils-gdb] Add support for intel SERIALIZE instruction gdb-buildbot
2020-04-22 0:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-17 7:13 [binutils-gdb] gdbserver/linux-low: turn some static functions into private methods gdb-buildbot
2020-04-22 5:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-17 9:43 [binutils-gdb] gdbserver/linux-low: start turning linux target ops into methods gdb-buildbot
2020-04-22 7:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-17 12:38 [binutils-gdb] gdbserver/linux-low: turn 'arch_setup' into a method gdb-buildbot
2020-04-22 10:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-17 15:28 [binutils-gdb] gdbserver/linux-low: turn 'regs_info' into a method gdb-buildbot
2020-04-22 12:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-17 18:27 [binutils-gdb] gdbserver/linux-low: turn 'cannot_{fetch/store}_register' into methods gdb-buildbot
2020-04-22 14:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-18 0:04 [binutils-gdb] gdbserver/linux-low: turn some more static functions into private methods gdb-buildbot
2020-04-22 19:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-18 3:06 [binutils-gdb] gdbserver/linux-low: turn 'get_pc' and 'set_pc' into methods gdb-buildbot
2020-04-22 21:51 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-18 5:47 [binutils-gdb] gdbserver/linux-low: turn 'breakpoint_kind_from_{pc, current_state}' into methods gdb-buildbot
2020-04-23 0:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-18 8:42 [binutils-gdb] gdbserver/linux-low: turn 'sw_breakpoint_from_kind' into a method gdb-buildbot
2020-04-23 2:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-18 14:29 [binutils-gdb] gdbserver/linux-low: turn the 'decr_pc_after_break' field into a method gdb-buildbot
2020-04-23 7:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-18 16:47 [binutils-gdb] gdbserver/linux-low: turn 'breakpoint_at' into a method gdb-buildbot
2020-04-23 9:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-18 19:39 [binutils-gdb] gdbserver/linux-low: turn 'supports_z_point_type' into a method gdb-buildbot
2020-04-23 11:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-19 2:25 [binutils-gdb] gdbserver/linux-low: turn watchpoint ops into methods gdb-buildbot
2020-04-23 16:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-19 4:30 [binutils-gdb] gdbserver/linux-low: turn '{collect, supply}_ptrace_register' into methods gdb-buildbot
2020-04-23 18:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-19 6:41 [binutils-gdb] gdbserver/linux-low: turn 'siginfo_fixup' into a method gdb-buildbot
2020-04-23 21:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-19 14:22 [binutils-gdb] gdbserver/linux-low: turn 'process_qsupported' into a method gdb-buildbot
2020-04-24 4:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-19 16:59 [binutils-gdb] gdbserver/linux-low: turn 'supports_tracepoints' into a method gdb-buildbot
2020-04-24 6:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-19 19:18 [binutils-gdb] gdbserver/linux-low: turn 'get_thread_area' into a method gdb-buildbot
2020-04-24 8:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-19 21:43 [binutils-gdb] gdbserver/linux-low: turn fast tracepoint ops into methods gdb-buildbot
2020-04-24 10:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-20 0:00 [binutils-gdb] gdbserver/linux-low: turn 'emit_ops' into a method gdb-buildbot
2020-04-24 13:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-20 2:05 [binutils-gdb] gdbserver/linux-low: turn 'supports_range_stepping' into a method gdb-buildbot
2020-04-24 15:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-20 5:05 [binutils-gdb] gdbserver/linux-low: turn 'supports_hardware_single_step' into a method gdb-buildbot
2020-04-24 17:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-20 7:19 [binutils-gdb] gdbserver/linux-low: turn 'get_syscall_trapinfo' into a method gdb-buildbot
2020-04-24 20:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-20 9:59 [binutils-gdb] gdbserver/linux-low: turn 'get_ipa_tdesc_idx' into a method gdb-buildbot
2020-04-24 22:33 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-20 12:37 [binutils-gdb] gdbserver/linux-low: delete 'linux_target_ops' and 'the_low_target' gdb-buildbot
2020-04-25 0:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-20 22:47 [binutils-gdb] gdb/testsuite: Add support for DW_LNS_set_file to DWARF compiler gdb-buildbot
2020-04-25 10:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-21 2:02 [binutils-gdb] gdb: Don't remove duplicate entries from the line table gdb-buildbot
2020-04-25 12:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-21 4:59 [binutils-gdb] Micro-optimize partial_die_info::read gdb-buildbot
2020-04-25 14:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-21 7:32 [binutils-gdb] Avoid assertion failure due to complex type change gdb-buildbot
2020-04-25 17:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-21 12:56 [binutils-gdb] gdb: use bfd_get_section_contents to read section contents in is_linked_with_cygwin_dll gdb-buildbot
2020-04-26 2:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-21 18:26 [binutils-gdb] Fix attributes of typed enums of typedefs gdb-buildbot
2020-04-26 7:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-21 21:05 [binutils-gdb] elf: Remove zero-sized relocation section from section group gdb-buildbot
2020-04-26 9:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-22 10:36 [binutils-gdb] Fix build breakage in NetBSD tdep files gdb-buildbot
2020-04-26 22:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-22 16:13 [binutils-gdb] Implement basic threading support in the NetBSD target gdb-buildbot
2020-04-27 3:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-22 18:57 [binutils-gdb] Add support for intel TSXLDTRK instructions$ gdb-buildbot
2020-04-27 5:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-22 21:47 [binutils-gdb] [gdb/symtab] Fix check-psymtab failure for inline function gdb-buildbot
2020-04-27 8:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-23 5:40 [binutils-gdb] gdb: small cleanups in dwarf2_psymtab constructors gdb-buildbot
2020-04-27 14:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-23 8:00 [binutils-gdb] Support for DW_AT_loclists_base and DW_FORM_loclistx gdb-buildbot
2020-04-27 17:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-23 15:59 [binutils-gdb] Define NetBSD specific skip_solib_resolver gdb-buildbot
2020-04-28 0:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-24 0:15 [binutils-gdb] Remove objfile parameter from read_gdb_index_from_buffer gdb-buildbot
2020-04-28 9:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-24 3:04 [binutils-gdb] gdb: stop using host-dependent signal numbers in windows-tdep.c gdb-buildbot
2020-04-28 11:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-24 5:56 [binutils-gdb] Remove the "next" field from windows_thread_info gdb-buildbot
2020-04-28 14:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-24 13:55 [binutils-gdb] Share windows_thread_info between gdb and gdbserver gdb-buildbot
2020-04-28 20:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-24 16:45 [binutils-gdb] Use new and delete for windows_thread_info gdb-buildbot
2020-04-28 23:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-24 22:41 [binutils-gdb] Make windows_thread_info::name a unique_xmalloc_ptr gdb-buildbot
2020-04-29 7:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-25 1:35 [binutils-gdb] Use lwp, not tid, for Windows thread id gdb-buildbot
2020-04-29 9:45 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-25 7:06 [binutils-gdb] Change type of argument to windows-nat.c:thread_rec gdb-buildbot
2020-04-29 14:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-25 9:14 [binutils-gdb] Handle pending stops from the Windows kernel gdb-buildbot
2020-04-29 16:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-25 11:20 [binutils-gdb] Call CloseHandle from ~windows_thread_info gdb-buildbot
2020-04-29 19:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-25 14:00 [binutils-gdb] Wrap shared windows-nat code in windows_nat namespace gdb-buildbot
2020-04-29 21:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-25 17:49 [binutils-gdb] Share thread_rec between gdb and gdbserver gdb-buildbot
2020-04-29 23:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-25 21:00 [binutils-gdb] Share get_image_name between gdb and gdbserver gdb-buildbot
2020-04-30 2:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-25 23:59 [binutils-gdb] Share some Windows-related globals gdb-buildbot
2020-04-30 4:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-26 2:32 [binutils-gdb] Normalize handle_output_debug_string API gdb-buildbot
2020-04-30 6:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-26 4:37 [binutils-gdb] Fix up complaints.h for namespace use gdb-buildbot
2020-04-30 9:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-26 6:44 [binutils-gdb] Share handle_load_dll and handle_unload_dll declarations gdb-buildbot
2020-04-30 11:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-26 8:36 [binutils-gdb] Remove some globals from windows-nat.c gdb-buildbot
2020-04-30 13:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-26 14:13 [binutils-gdb] Introduce fetch_pending_stop gdb-buildbot
2020-04-30 20:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-26 15:55 [binutils-gdb] Move wait_for_debug_event to nat/windows-nat.c gdb-buildbot
2020-04-30 22:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-26 21:51 [binutils-gdb] Introduce win32_target_ops::decr_pc_after_break gdb-buildbot
2020-05-01 5:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-26 23:48 [binutils-gdb] Implement stopped_by_sw_breakpoint for Windows gdbserver gdb-buildbot
2020-05-01 8:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-27 3:32 [binutils-gdb] Add SVR4 psABI specific parser for AUXV entries gdb-buildbot
2020-05-01 12:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-27 9:09 [binutils-gdb] [gdb/cli] Don't let python colorize strip leading newlines gdb-buildbot
2020-05-01 19:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-27 13:05 [binutils-gdb] Fix debugging of WOW64 processes gdb-buildbot
2020-05-02 0:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-27 14:54 [binutils-gdb] Skip separate debug files when handling copy relocations gdb-buildbot
2020-05-02 2:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-27 19:18 [binutils-gdb] gdb: fix undefined behavior reported in copy_bitwise gdb-buildbot
2020-05-02 7:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-28 4:05 [binutils-gdb] Implement "info proc mappings" for NetBSD gdb-buildbot
2020-05-02 20:45 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-28 11:03 [binutils-gdb] Implement "info proc cwd" for NetBSD gdb-buildbot
2020-05-03 1:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-28 12:30 [binutils-gdb] Implement "info proc cmdline" for NetBSD gdb-buildbot
2020-05-03 3:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-28 18:54 [binutils-gdb] Update my email address on MAINTAINERS gdb-buildbot
2020-05-03 10:33 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-28 20:56 [binutils-gdb] Move start_event_loop out of event-loop.c gdb-buildbot
2020-05-03 12:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-29 6:02 [binutils-gdb] Include <chrono> in event-loop.c gdb-buildbot
2020-05-03 19:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-29 8:23 [binutils-gdb] Use warning in event-loop gdb-buildbot
2020-05-03 22:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-29 12:50 [binutils-gdb] Introduce async-event.[ch] gdb-buildbot
2020-05-04 4:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-29 20:57 [binutils-gdb] Remove gdb_fildes_t gdb-buildbot
2020-05-04 13:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-29 23:28 [binutils-gdb] gdb/testsuite: Move helper function into lib/dwarf.exp gdb-buildbot
2020-05-04 16:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-30 2:14 [binutils-gdb] [gdb] Fix missing symtab includes gdb-buildbot
2020-05-04 21:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-30 10:53 [binutils-gdb] [PATCH v2 2/2] coff-go32: support extended relocations gdb-buildbot
2020-05-05 6:45 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-30 13:14 [binutils-gdb] PR25823, Use after free in bfd_hash_lookup gdb-buildbot
2020-05-05 9:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-30 15:03 [binutils-gdb] Unify the behaviour of ld.bfd and ld.gold with respect to warning about unresolved symbol references. (PR 24613) gdb-buildbot
2020-05-05 11:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-30 16:00 [binutils-gdb] Better handling of realpath() failure in windows_make_so() on Cygwin gdb-buildbot
2020-05-05 13:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-30 21:26 [binutils-gdb] Use debug_printf in windows-nat.c gdb-buildbot
2020-05-05 18:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-04-30 23:27 [binutils-gdb] Fix OpenBSD build error gdb-buildbot
2020-05-05 20:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-01 1:49 [binutils-gdb] gdbserver: fix format string warning in win32-low.cc gdb-buildbot
2020-05-05 22:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-01 3:29 [binutils-gdb] PowerPC64 GOT reloc optimisation gdb-buildbot
2020-05-06 1:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-01 9:03 [binutils-gdb] cpu, gas, opcodes: support for eBPF JMP32 instruction class gdb-buildbot
2020-05-06 9:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-01 10:59 [binutils-gdb] PR25827, Null pointer dereferencing in scan_unit_for_symbols gdb-buildbot
2020-05-06 11:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-01 15:23 [binutils-gdb] [gdb/symtab] Handle PU without import in "save gdb-index" gdb-buildbot
2020-05-06 16:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-01 19:18 [binutils-gdb] Refactor delete_program_space as a destructor gdb-buildbot
2020-05-06 21:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-01 21:13 [binutils-gdb] Stop the MIPS assembler from accepting ifunc symbols gdb-buildbot
2020-05-07 0:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-01 23:39 [binutils-gdb] gdb: is_linked_with_cygwin_dll: handle import table not at beginning of .idata section gdb-buildbot
2020-05-07 2:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-02 7:51 [binutils-gdb] [PATCH v2] binutils: arm: Fix disassembly of conditional VDUPs gdb-buildbot
2020-05-07 11:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-02 11:46 [binutils-gdb] Fix the build of fork-running-state.c on NetBSD gdb-buildbot
2020-05-07 17:45 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-02 13:45 [binutils-gdb] Fix gdb.base/attach-twice.c build on NetBSD gdb-buildbot
2020-05-07 20:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-02 19:47 [binutils-gdb] Restore some windows-tdep.c code gdb-buildbot
2020-05-08 3:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-03 4:18 [binutils-gdb] PowerPC64: remove empty .rela.dyn (.rela.branch_lt) gdb-buildbot
2020-05-08 16:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-03 8:45 [binutils-gdb] [AArch64, Binutils] Add missing TSB instruction gdb-buildbot
2020-05-08 21:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-03 12:31 [binutils-gdb] Fix compilation error with clang in gdb/testsuite/gdb.base/jit-main.c gdb-buildbot
2020-05-09 2:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-03 16:28 [binutils-gdb] Fix compilation error with clang in gdb/testsuite/gdb.cp/exception.cc gdb-buildbot
2020-05-09 7:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-03 18:02 [binutils-gdb] Add myself to gdb/MAINTAINERS gdb-buildbot
2020-05-09 9:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-03 20:34 [binutils-gdb] Disable nested function tests for clang gdb-buildbot
2020-05-09 11:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-03 22:33 [binutils-gdb] Use support_nested_function_tests in gdb.base/nested-subp1.exp et al gdb-buildbot
2020-05-09 14:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-04 0:12 [binutils-gdb] Mark move constructors as "noexcept" gdb-buildbot
2020-05-09 16:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-04 2:41 [binutils-gdb] Remove SH-5 remnants gdb-buildbot
2020-05-09 20:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-04 4:32 [binutils-gdb] Since the pdp11-aout target does not support gdb, gdbserver or gprof these should be excluded in configure gdb-buildbot
2020-05-09 23:45 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-04 6:27 [binutils-gdb] Updated Serbian translation for the BFD directory gdb-buildbot
2020-05-10 4:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-04 10:04 [binutils-gdb] elf: Strip zero-sized dynamic sections gdb-buildbot
2020-05-10 8:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-04 12:09 [binutils-gdb] [gdb/testsuite] allow more registers in gdb.base/jit-reader.exp gdb-buildbot
2020-05-10 11:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-04 14:05 [binutils-gdb] [gdb/testsuite] structured rename of jit test files gdb-buildbot
2020-05-10 13:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-04 16:01 [binutils-gdb] [gdb/testsuite] share jit-protocol.h by all jit tests gdb-buildbot
2020-05-10 15:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-04 17:56 [binutils-gdb] [gdb] Fix hang after ext sigkill gdb-buildbot
2020-05-10 18:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-04 20:58 [binutils-gdb] gdb, btrace: forward fetch_registers for unknown threads gdb-buildbot
2020-05-10 20:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-04 22:50 [binutils-gdb] gdb, btrace: diagnose double and failed enable gdb-buildbot
2020-05-10 22:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-05 0:46 [binutils-gdb] gdb, btrace: make record-btrace per-inferior gdb-buildbot
2020-05-11 0:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-05 5:03 [binutils-gdb] Disallow PC relative for CMPI on MC68000/10 gdb-buildbot
2020-05-11 5:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-05 6:50 [binutils-gdb] gdb/infrun: switch the context before 'displaced_step_restore' gdb-buildbot
2020-05-11 7:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-05 13:09 [binutils-gdb] [gdb/symtab] Find filename in shared psymtab gdb-buildbot
2020-05-11 14:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-05 16:47 [binutils-gdb] [gdb/testsuite] Fix .debug_aranges in gdb.dlang/watch-loc.c gdb-buildbot
2020-05-11 19:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-05 19:06 [binutils-gdb] [gdb/testsuite] Fix .debug_ranges in gdb.mi/dw2-ref-missing-frame-func.c gdb-buildbot
2020-05-11 21:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-05 22:49 [binutils-gdb] xtensa: fix PR ld/25861 gdb-buildbot
2020-05-12 2:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-06 1:50 [binutils-gdb] [gdb/symtab] Fix disassembly of non-contiguous functions gdb-buildbot
2020-05-12 4:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-06 4:23 [binutils-gdb] [gdb/testsuite] Skip gdb.base/readnever.exp with target board readnow gdb-buildbot
2020-05-12 7:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-06 9:55 [binutils-gdb] Remove iterate_over_inferiors gdb-buildbot
2020-05-12 11:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-06 15:25 [binutils-gdb] [gdb/symtab] Prefer def over decl (inter-CU case) gdb-buildbot
2020-05-12 16:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-06 21:01 [binutils-gdb] Fix inline frame unwinding breakage gdb-buildbot
2020-05-12 21:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-07 0:19 [binutils-gdb] Fix infinite loop in is_linked_with_cygwin_dll gdb-buildbot
2020-05-12 23:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-07 5:17 [binutils-gdb] [gdb/testsuite] Reduce errors after gdb exit in default_gdb_start gdb-buildbot
2020-05-13 4:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-07 6:48 [binutils-gdb] [gdb/testsuite] Compile gdb.dwarf2/dw2-error.exp quietly gdb-buildbot
2020-05-13 6:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-07 22:22 [binutils-gdb] Rename "variant" to "ppc_variant" gdb-buildbot
2020-05-13 20:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-08 0:23 [binutils-gdb] Add new variant part code gdb-buildbot
2020-05-13 23:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-08 11:53 [binutils-gdb] Update Ada ptype support for dynamic types gdb-buildbot
2020-05-14 13:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-08 13:32 [binutils-gdb] Add tests for Ada changes gdb-buildbot
2020-05-14 16:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-08 15:48 [binutils-gdb] Add Python support for dynamic types gdb-buildbot
2020-05-14 18:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-08 17:35 [binutils-gdb] Update test cases that work with minimal encodings gdb-buildbot
2020-05-14 20:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-08 20:06 [binutils-gdb] [gdb/testsuite] Fix language in dw2-bad-mips-linkage-name.exp gdb-buildbot
2020-05-14 23:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-08 22:23 [binutils-gdb] Convert symbol_set_demangled_name to a method gdb-buildbot
2020-05-15 1:42 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-09 0:25 [binutils-gdb] Move the rust "{" hack gdb-buildbot
2020-05-15 4:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-09 4:47 [binutils-gdb] Add attribute::value_as_string method gdb-buildbot
2020-05-15 8:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-09 6:26 [binutils-gdb] Introduce new add_psymbol_to_list overload gdb-buildbot
2020-05-15 11:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-09 10:04 [binutils-gdb] Don't call compute_and_set_names for partial symbols gdb-buildbot
2020-05-15 16:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-09 16:53 [binutils-gdb] gdb/testsuite: Remove build paths from test names gdb-buildbot
2020-05-16 1:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-09 20:25 [binutils-gdb] [gdb/testsuite] Add target board debug-types gdb-buildbot
2020-05-16 4:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-10 9:54 [binutils-gdb] Fix comments and whitespace in lookup_cmd_composition gdb-buildbot
2020-05-16 14:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-10 16:17 [binutils-gdb] gdbsupport: include cstdlib in common-defs.h gdb-buildbot
2020-05-16 21:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-11 0:22 [binutils-gdb] [gdb/symtab] Handle struct decl with DW_AT_signature gdb-buildbot
2020-05-17 7:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-11 8:05 [binutils-gdb] Fix typo (thead -> thread) gdb-buildbot
2020-05-17 16:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-11 13:36 [binutils-gdb] gdb: Fix toplevel types with -fdebug-types-section gdb-buildbot
2020-05-17 23:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-11 15:36 [binutils-gdb] Allow Python commands to be in class_tui gdb-buildbot
2020-05-18 2:21 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-11 19:35 [binutils-gdb] Add definitions of system calls to catch in native NetBSD targets gdb-buildbot
2020-05-18 7:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-11 23:30 [binutils-gdb] Fix array pretty formatter gdb-buildbot
2020-05-18 12:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-13 7:16 [binutils-gdb] [gdb/testsuite] Add xfails for PR gcc/90232 gdb-buildbot
2020-05-18 14:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-19 1:45 [binutils-gdb] win32 typo fix gdb-buildbot
2020-05-19 2:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-19 4:37 [binutils-gdb] Use bfd_get_filename throughout bfd gdb-buildbot
2020-05-19 4:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-19 14:39 [binutils-gdb] OpenRISC BFD fixups for Glibc: gdb-buildbot
2020-05-19 14:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-19 17:40 [binutils-gdb] gdb: use std::vector to store segments in symfile_segment_data gdb-buildbot
2020-05-19 18:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-19 17:41 [binutils-gdb] gdb: make symfile_segment_data::segment_info an std::vector gdb-buildbot
2020-05-19 19:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-19 17:49 [binutils-gdb] Default gdb_bfd_open's fd parameter to -1 gdb-buildbot
2020-05-19 22:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-19 18:54 [binutils-gdb] [gdb/testsuite] Fix typo in gdb.base/gdb-caching-proc.exp gdb-buildbot
2020-05-20 2:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-20 5:06 [binutils-gdb] PR26011, excessive memory allocation with fuzzed reloc sections gdb-buildbot
2020-05-20 5:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-20 6:01 [binutils-gdb] Power10 dcbf, sync, and wait extensions gdb-buildbot
2020-05-20 6:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-20 6:56 [binutils-gdb] PR25993, read of freed memory gdb-buildbot
2020-05-20 6:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-20 10:29 [binutils-gdb] [gdb/symtab] Handle .gdb_index in ada language mode gdb-buildbot
2020-05-20 10:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-20 14:02 [binutils-gdb] Remove bound_name static from ada-lang.c gdb-buildbot
2020-05-20 14:02 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-20 14:57 [binutils-gdb] Fix array_char_idx.exp gdb-buildbot
2020-05-20 14:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-21 2:09 [binutils-gdb] Replace "if (x) free (x)" with "free (x)", bfd gdb-buildbot
2020-05-21 2:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-21 3:04 [binutils-gdb] Replace "if (x) free (x)" with "free (x)", opcodes gdb-buildbot
2020-05-21 3:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-22 20:18 [binutils-gdb] Remove obsolete declaration gdb-buildbot
2020-05-22 20:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-22 21:40 [binutils-gdb] gdb: add type::num_fields / type::set_num_fields gdb-buildbot
2020-05-22 21:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-22 23:30 [binutils-gdb] gdb: add type::fields / type::set_fields gdb-buildbot
2020-05-22 23:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-23 0:24 [binutils-gdb] gdb: remove TYPE_FIELDS macro gdb-buildbot
2020-05-23 0:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-23 8:08 [binutils-gdb] Fix potential segfault gdb-buildbot
2020-05-23 8:08 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-23 23:04 [binutils-gdb] Add completion styling gdb-buildbot
2020-05-24 1:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-24 7:26 [binutils-gdb] gdb: remove TYPE_FIELD macro gdb-buildbot
2020-05-24 7:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-25 17:09 [binutils-gdb] gdb: make gdbarch.sh write gdbarch.{c,h} directly gdb-buildbot
2020-05-25 17:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-25 19:52 [binutils-gdb] Revert "Add completion styling" gdb-buildbot
2020-05-25 19:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-25 21:24 [binutils-gdb] [gdb/testsuite] Fix exec_is_pie with gold linker gdb-buildbot
2020-05-25 21:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-26 0:30 [binutils-gdb] gdb: Move construct_inferior_arguments to gdbsupport gdb-buildbot
2020-05-26 0:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-26 1:26 [binutils-gdb] gdbsupport: Adapt construct_inferior_arguments gdb-buildbot
2020-05-26 1:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-26 2:22 [binutils-gdb] gdbsupport: Let construct_inferior_arguments take gdb::array_view param gdb-buildbot
2020-05-26 2:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-26 3:18 [binutils-gdb] gdbserver: Don't add extra NULL to program args gdb-buildbot
2020-05-26 3:18 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-26 5:10 [binutils-gdb] Use construct_inferior_arguments which handles special chars gdb-buildbot
2020-05-26 5:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-26 7:00 [binutils-gdb] gdb/testsuite: support passing inferior arguments with native-gdbserver board gdb-buildbot
2020-05-26 7:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-26 7:55 [binutils-gdb] gdb/testsuite: add inferior arguments test gdb-buildbot
2020-05-26 7:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-26 8:50 [binutils-gdb] gdb/testsuite: add simavr.exp board gdb-buildbot
2020-05-26 8:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-26 10:40 [binutils-gdb] [gdb/testsuite] Add target board gold-gdb-index gdb-buildbot
2020-05-26 10:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-26 14:32 [binutils-gdb] Extend the error message displayed when a plugin fails to load gdb-buildbot
2020-05-26 14:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-26 16:58 [binutils-gdb] S/390: z13: Accept vector alignment hints gdb-buildbot
2020-05-26 16:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-26 17:54 [binutils-gdb] Use = instead of == for better portability gdb-buildbot
2020-05-26 17:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-27 7:06 [binutils-gdb] Fix extraction of signed constants in nios2 disassembler (again) gdb-buildbot
2020-05-27 7:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-27 12:40 [binutils-gdb] ld: Add --warn-textrel and obsolete --warn-shared-textrel gdb-buildbot
2020-05-27 12:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-27 13:36 [binutils-gdb] Fix some duplicate test names gdb-buildbot
2020-05-27 13:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-27 14:31 [binutils-gdb] Fix PR 26000, logical bitwise error / prologue analyzer gdb-buildbot
2020-05-27 14:31 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-27 18:26 [binutils-gdb] Add "objfile" parameter to two partial_symtab methods gdb-buildbot
2020-05-27 18:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-27 20:19 [binutils-gdb] Add dwarf2_per_objfile member to DWARF batons gdb-buildbot
2020-05-27 20:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-27 21:16 [binutils-gdb] Split dwarf2_per_objfile into dwarf2_per_objfile and dwarf2_per_bfd gdb-buildbot
2020-05-27 21:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-27 23:09 [binutils-gdb] Move die_type_hash to dwarf2_per_objfile gdb-buildbot
2020-05-27 23:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-28 0:06 [binutils-gdb] Add dwarf2_per_objfile field to dwarf2_cu gdb-buildbot
2020-05-28 0:06 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-28 1:57 [binutils-gdb] Remove dwarf2_cu->per_cu->dwarf2_per_objfile references gdb-buildbot
2020-05-28 1:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-28 5:41 [binutils-gdb] Add dwarf2_per_objfile parameter to cutu_reader's constructors gdb-buildbot
2020-05-28 5:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-28 8:28 [binutils-gdb] Add dwarf2_per_objfile parameter to create_partial_symtab gdb-buildbot
2020-05-28 8:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-28 9:25 [binutils-gdb] Add dwarf2_per_objfile parameter to recursively_compute_inclusions gdb-buildbot
2020-05-28 9:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-28 12:13 [binutils-gdb] Remove reference to dwarf2_per_cu_data::dwarf2_per_objfile in queue_and_load_all_dwo_tus gdb-buildbot
2020-05-28 12:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-28 15:00 [binutils-gdb] Remove dwarf2_per_cu_data::text_offset gdb-buildbot
2020-05-28 15:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-28 16:37 [binutils-gdb] Add dwarf2_per_objfile parameter to allocate_piece_closure gdb-buildbot
2020-05-28 16:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-28 17:56 [binutils-gdb] Add dwarf2_per_objfile parameters to dwarf2_fetch_* functions gdb-buildbot
2020-05-28 17:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-28 20:15 [binutils-gdb] Add dwarf2_per_objfile parameter to get_die_type_at_offset gdb-buildbot
2020-05-28 20:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-28 22:44 [binutils-gdb] Remove dwarf2_per_cu_data::dwarf2_per_objfile gdb-buildbot
2020-05-28 22:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 0:35 [binutils-gdb] Move signatured_type::type to unshareable object gdb-buildbot
2020-05-29 0:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 2:26 [binutils-gdb] Pass dwarf2_cu to process_full_{comp,type}_unit gdb-buildbot
2020-05-29 2:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 3:22 [binutils-gdb] Make load_cu return the loaded dwarf2_cu gdb-buildbot
2020-05-29 3:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 7:57 [binutils-gdb] Move line_header_hash to dwarf2_per_objfile gdb-buildbot
2020-05-29 7:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 9:27 [binutils-gdb] Don't close thread handles provided by WaitForDebugEvent gdb-buildbot
2020-05-29 9:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 10:41 [binutils-gdb] Don't close process handle provided by WaitForDebugEvent gdb-buildbot
2020-05-29 10:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 11:16 [binutils-gdb] Use errno value of first openp failure gdb-buildbot
2020-05-29 11:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 12:30 [binutils-gdb] Move exit_status_set_internal_vars out of GLOBAL_CURDIR gdb-buildbot
2020-05-29 12:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 14:23 [binutils-gdb] Lazily compute partial DIE name gdb-buildbot
2020-05-29 14:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 15:17 [binutils-gdb] Inline abbrev lookup gdb-buildbot
2020-05-29 15:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 16:12 [binutils-gdb] Use add_partial_symbol in load_partial_dies gdb-buildbot
2020-05-29 16:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 17:09 [binutils-gdb] cp-completion-aliases.exp: Use test_gdb_complete_{unique, multiple} gdb-buildbot
2020-05-29 17:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 18:04 [binutils-gdb] Fix a potential use of an uninitialised value in the ns32k disassembler gdb-buildbot
2020-05-29 18:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 18:58 [binutils-gdb] asan: ns32k: use of uninitialized value gdb-buildbot
2020-05-29 18:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 19:53 [binutils-gdb] PR26044, Some targets can't be compiled with GCC 10 (tilepro) gdb-buildbot
2020-05-29 19:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 20:47 [binutils-gdb] ubsan: nios2: undefined shift gdb-buildbot
2020-05-29 20:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 21:41 [binutils-gdb] Fix "'operator new' should not return NULL" errors in testsuite gdb-buildbot
2020-05-29 21:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 22:37 [binutils-gdb] [gdb/symtab] Make gold index workaround more precise gdb-buildbot
2020-05-29 22:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-29 23:32 [binutils-gdb] Pass -Wno-deprecated-register for gdb.cp that use "register" gdb-buildbot
2020-05-29 23:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-30 0:26 [binutils-gdb] gdb: use caller objfile in dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value gdb-buildbot
2020-05-30 0:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-30 3:10 [binutils-gdb] Fix Python3.9 related runtime problems gdb-buildbot
2020-05-30 3:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-30 5:00 [binutils-gdb] cpu, opcodes: add instruction semantics to bpf.cpu and minor fixes gdb-buildbot
2020-05-30 5:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-30 6:49 [binutils-gdb] Build two gdb.cp testcases with -Wno-unused-comparison gdb-buildbot
2020-05-30 6:49 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-30 7:43 [binutils-gdb] Fix file-not-found error with clang in gdb.arch/i386-{avx, sse}.c gdb-buildbot
2020-05-30 7:43 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-30 8:38 [binutils-gdb] Fix build errors in with clang in gdb.compile/compile-cplus.c gdb-buildbot
2020-05-30 8:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-30 16:54 [binutils-gdb] gdb: change bug URL to https gdb-buildbot
2020-05-30 16:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-30 21:37 [binutils-gdb] hurd: make function cast stronger gdb-buildbot
2020-05-30 21:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-30 22:32 [binutils-gdb] hurd: add missing include gdb-buildbot
2020-05-30 22:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-30 23:26 [binutils-gdb] hurd: remove unused variables gdb-buildbot
2020-05-30 23:26 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-31 0:21 [binutils-gdb] hurd: add gnu_target pointer to fix thread API calls gdb-buildbot
2020-05-31 0:21 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-05-31 10:59 [binutils-gdb] gnu-nat: Move local functions inside gnu_nat_target class gdb-buildbot
2020-05-31 10:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-01 8:35 [binutils-gdb] hurd: Add shared mig declarations gdb-buildbot
2020-06-01 8:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-01 9:25 [binutils-gdb] gdb: Preserve is-stmt lines when switch between files gdb-buildbot
2020-06-01 9:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-01 14:47 [binutils-gdb] Regen opcodes/bpf-desc.c gdb-buildbot
2020-06-01 14:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-01 15:41 [binutils-gdb] alpha-vms: ETIR checks gdb-buildbot
2020-06-01 15:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-02 15:09 [binutils-gdb] gdb: Convert language la_print_array_index field to a method gdb-buildbot
2020-06-02 15:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-02 17:54 [binutils-gdb] gdb: Convert language la_language_arch_info field to a method gdb-buildbot
2020-06-02 17:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-02 19:45 [binutils-gdb] gdb: Convert language la_iterate_over_symbols field to a method gdb-buildbot
2020-06-02 19:45 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-02 20:41 [binutils-gdb] gdb: Convert language la_get_compile_instance field to a method gdb-buildbot
2020-06-02 20:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-03 1:15 [binutils-gdb] gdb: Convert language skip_trampoline field to a method gdb-buildbot
2020-06-03 1:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-03 10:21 [binutils-gdb] PR26069, strip/objcopy misaligned address accesses gdb-buildbot
2020-06-03 10:21 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-03 16:09 [binutils-gdb] ELF: Copy dyn_relocs in _bfd_elf_link_hash_copy_indirect gdb-buildbot
2020-06-03 16:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-03 17:10 [binutils-gdb] ELF: Consolidate maybe_set_textrel gdb-buildbot
2020-06-03 17:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-03 17:46 [binutils-gdb] This patch set for the generic BFD a.out backend removes a dead #define and makes aoutx.h self-contained: [PATCH 1/2]: bfd: remove unused NO_WRITE_HEADER_KLUDGE #define [PATCH 2/2]: bfd: make aoutx.h self-contained gdb-buildbot
2020-06-03 18:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-03 20:31 [binutils-gdb] arc: Don't generate dynamic relocation for non SEC_ALLOC sections gdb-buildbot
2020-06-03 20:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-03 22:40 [binutils-gdb] nios2: Don't check relocations in non-loaded, non-alloced sections gdb-buildbot
2020-06-03 22:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-03 23:35 [binutils-gdb] nios2: Call _bfd_elf_maybe_set_textrel to set DF_TEXTREL gdb-buildbot
2020-06-03 23:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-04 0:30 [binutils-gdb] [gdb/symtab] Fix missing breakpoint location for inlined function gdb-buildbot
2020-06-04 0:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-04 13:45 [binutils-gdb] ELF: Don't check relocations in non-loaded, non-alloced sections gdb-buildbot
2020-06-04 13:45 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-04 15:55 [binutils-gdb] opcodes: support insn endianness in cgen_cpu_open gdb-buildbot
2020-06-04 15:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-04 16:50 [binutils-gdb] opcodes: discriminate endianness and insn-endianness in CGEN ports gdb-buildbot
2020-06-04 16:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-05 6:28 [binutils-gdb] [gdb/testsuite] Fix error handling in gdb_file_cmd gdb-buildbot
2020-06-05 6:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-05 8:36 [binutils-gdb] x86: Remove target_id from elf_x86_link_hash_table gdb-buildbot
2020-06-05 8:36 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-05 10:30 [binutils-gdb] Correct a comment gdb-buildbot
2020-06-05 10:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-05 11:24 [binutils-gdb] Extend pdp11-aout symbol table format and code for .stab symbols gdb-buildbot
2020-06-05 11:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-05 13:15 [binutils-gdb] bpf stack smashing detected gdb-buildbot
2020-06-05 13:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-05 15:04 [binutils-gdb] [gdb/NEWS] Fix typos gdb-buildbot
2020-06-05 15:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-05 15:58 [binutils-gdb] bfin: Skip non SEC_ALLOC section gdb-buildbot
2020-06-05 15:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-05 16:53 [binutils-gdb] bfin: Initialize picrel to silence GCC warning gdb-buildbot
2020-06-05 16:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-05 18:46 [binutils-gdb] gdb/python: Avoid use after free in py-tui.c gdb-buildbot
2020-06-05 19:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-06 5:59 [binutils-gdb] Rename PowerPC64 pcrel GOT TLS relocations gdb-buildbot
2020-06-06 5:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-06 14:12 [binutils-gdb] ELF: Add target_os to elf_link_hash_table/elf_backend_data gdb-buildbot
2020-06-06 14:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-07 17:04 [binutils-gdb] elf64-hppa: Replace plt_sec/plt_rel_sec with root.splt/root.srelplt gdb-buildbot
2020-06-07 17:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-08 15:56 [binutils-gdb] [PATCH] arm: Add DFB instruction for ARMv8-R gdb-buildbot
2020-06-08 15:56 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-08 20:39 [binutils-gdb] gdb: add type::index_type / type::set_index_type gdb-buildbot
2020-06-08 20:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-08 21:34 [binutils-gdb] gdb: remove TYPE_INDEX_TYPE macro gdb-buildbot
2020-06-08 21:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-08 23:05 [binutils-gdb] gdb: remove FIELD_TYPE macro gdb-buildbot
2020-06-08 23:24 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-09 1:29 [binutils-gdb] PowerPC64: Downgrade ifunc with textrel error to a warning gdb-buildbot
2020-06-09 1:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-09 7:44 [binutils-gdb] x86: correct mis-named MOD_0F51 enumerator gdb-buildbot
2020-06-09 7:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-09 9:34 [binutils-gdb] x86: utilize X macro in EVEX decoding gdb-buildbot
2020-06-09 9:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-09 13:53 [binutils-gdb] i386-dis.c: Fix a typo in comments gdb-buildbot
2020-06-09 14:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-10 13:17 [binutils-gdb] ELF: Properly handle section symbols gdb-buildbot
2020-06-10 13:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-10 14:12 [binutils-gdb] [gdb/symtab] Fix name lookup in dw2_map_matching_symbols gdb-buildbot
2020-06-10 14:12 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-10 15:07 [binutils-gdb] [gdb/symtab] Enable ada .gdb_index gdb-buildbot
2020-06-10 15:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-11 2:14 [binutils-gdb] ia64: Set DF_TEXTREL instead of reltext gdb-buildbot
2020-06-11 2:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-11 5:27 [binutils-gdb] asan: readelf: process_mips_specific buffer overflow gdb-buildbot
2020-06-11 5:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-11 13:16 [binutils-gdb] [gdb/testsuite] Make gdb.base/dbx.exp more robust gdb-buildbot
2020-06-11 13:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-11 14:10 [binutils-gdb] Compute proper length for dynamic types of TYPE_CODE_TYPEDEF gdb-buildbot
2020-06-11 14:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-11 17:19 [binutils-gdb] Fix hex floating point lexing gdb-buildbot
2020-06-11 17:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-12 7:55 [binutils-gdb] [gdb/testsuite] Don't abort testrun for invalid command in test-case gdb-buildbot
2020-06-12 7:55 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-12 12:11 [binutils-gdb] [gdb/testsuite] Don't leak tuiterm.exp spawn override gdb-buildbot
2020-06-12 12:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-12 13:51 [binutils-gdb] gdb/testsuite: Prevent globals leaking between test scripts gdb-buildbot
2020-06-12 13:51 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-12 17:19 [binutils-gdb] [gdbserver] Fix Wlto-type-mismatch for debug_agent gdb-buildbot
2020-06-12 17:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-12 20:32 [binutils-gdb] gdbserver: small cleanup of README file gdb-buildbot
2020-06-12 20:52 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-12 21:48 [binutils-gdb] gdbserver: remove support for LynxOS gdb-buildbot
2020-06-12 21:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-12 22:44 [binutils-gdb] gdbserver: remove support for Neutrino gdb-buildbot
2020-06-12 22:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-13 0:15 [binutils-gdb] gdbserver: remove support for CRIS gdb-buildbot
2020-06-13 0:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-13 2:25 [binutils-gdb] gdbserver: remove support for Tile gdb-buildbot
2020-06-13 2:25 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-13 4:15 [binutils-gdb] gdb: mention removed GDBserver host support in NEWS gdb-buildbot
2020-06-13 4:15 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-14 12:51 [binutils-gdb] x86: Correct xsusldtrk mnemonic gdb-buildbot
2020-06-14 13:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-14 16:01 [binutils-gdb] Handle Windows drives in rbreak paths gdb-buildbot
2020-06-14 16:20 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-15 6:22 [binutils-gdb] Obsolete PowerPC PE, winnt and cygwin targets gdb-buildbot
2020-06-15 6:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-15 13:14 [binutils-gdb] Remove read_memory_string gdb-buildbot
2020-06-15 13:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-15 15:05 [binutils-gdb] Remove a use of target_read_string gdb-buildbot
2020-06-15 15:05 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-15 19:30 [binutils-gdb] gold, ld: Implement -z start-stop-visibility=... option gdb-buildbot
2020-06-15 19:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-15 20:44 [binutils-gdb] xtensa: allow runtime ABI selection gdb-buildbot
2020-06-15 20:44 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-16 7:10 [binutils-gdb] Really remove tic30-aout support gdb-buildbot
2020-06-16 7:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-16 12:22 [binutils-gdb] Add two missing return values in gdb.python/py-nested-maps.c gdb-buildbot
2020-06-16 12:22 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-17 0:38 [binutils-gdb] Fix crash when TUI window creation fails gdb-buildbot
2020-06-17 0:38 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-17 9:11 [binutils-gdb] gdb: Convert language la_class_name_from_physname field to a method gdb-buildbot
2020-06-17 9:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-17 11:00 [binutils-gdb] gdb: Convert language la_get_symbol_name_matcher field to a method gdb-buildbot
2020-06-17 11:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-17 13:46 [binutils-gdb] gdb: Convert language la_watch_location_expression field to a method gdb-buildbot
2020-06-17 13:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-17 15:40 [binutils-gdb] gdb: Convert language la_value_print_inner field to a method gdb-buildbot
2020-06-17 15:40 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-17 16:34 [binutils-gdb] gdb: Convert language la_lookup_symbol_nonlocal field to a method gdb-buildbot
2020-06-17 16:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-17 17:29 [binutils-gdb] Update thread_control_state::trap_expected comments gdb-buildbot
2020-06-17 17:29 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-17 18:09 [binutils-gdb] [gdb/testsuite] Remove dependence on tcl_unknown gdb-buildbot
2020-06-17 18:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-17 20:28 [binutils-gdb] Pass INTERNAL_GDBFLAGS when executing GDB gdb-buildbot
2020-06-17 20:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-17 21:27 [binutils-gdb] gdb/features: remove rx.xml from XMLTOC list gdb-buildbot
2020-06-17 21:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-18 0:13 [binutils-gdb] gdb: check for partial symtab presence in dwarf2_initialize_objfile gdb-buildbot
2020-06-18 0:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-18 2:49 [binutils-gdb] Remove unnecessary TUI declarations gdb-buildbot
2020-06-18 2:49 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-18 5:41 [binutils-gdb] Fix TUI support checks in gdb.tui tests gdb-buildbot
2020-06-18 5:41 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-18 13:48 [binutils-gdb] [gdb/testsuite] Move code from gdb_init to default_gdb_init gdb-buildbot
2020-06-18 13:48 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-18 23:11 [binutils-gdb] Don't write to inferior_ptid in linux_get_siginfo_data gdb-buildbot
2020-06-18 23:35 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 0:29 [binutils-gdb] gcore, handle exited threads better gdb-buildbot
2020-06-19 0:30 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 2:19 [binutils-gdb] Don't write to inferior_ptid in inf-ptrace.c gdb-buildbot
2020-06-19 2:19 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 3:14 [binutils-gdb] Don't write to inferior_ptid in target.c gdb-buildbot
2020-06-19 3:14 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 3:50 [binutils-gdb] Don't write to inferior_ptid in infrun.c gdb-buildbot
2020-06-19 4:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 5:59 [binutils-gdb] Don't write to inferior_ptid in tracefile-tfile.c gdb-buildbot
2020-06-19 5:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 6:54 [binutils-gdb] Don't write to inferior_ptid in tracectf.c gdb-buildbot
2020-06-19 6:54 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 7:49 [binutils-gdb] Don't write to inferior_ptid in remote.c gdb-buildbot
2020-06-19 7:49 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 9:39 [binutils-gdb] Don't write to inferior_ptid in nto-procfs.c gdb-buildbot
2020-06-19 9:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 11:28 [binutils-gdb] Don't write to inferior_ptid in gnu-nat.c gdb-buildbot
2020-06-19 11:28 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 13:17 [binutils-gdb] Don't write to inferior_ptid in corelow.c gdb-buildbot
2020-06-19 13:17 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 16:03 [binutils-gdb] Don't write to inferior_ptid in bsd-kvm.c gdb-buildbot
2020-06-19 16:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 18:53 [binutils-gdb] Don't write to inferior_ptid in windows-nat.c, part I gdb-buildbot
2020-06-19 18:53 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 19:47 [binutils-gdb] Don't write to inferior_ptid in windows-nat.c, part II gdb-buildbot
2020-06-19 19:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 21:37 [binutils-gdb] Don't write to inferior_ptid in aix-thread.c gdb-buildbot
2020-06-19 21:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 22:13 [binutils-gdb] Decouple inferior_ptid/inferior_thread(); dup ptids in thread list (PR 25412) gdb-buildbot
2020-06-19 22:32 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-19 23:27 [binutils-gdb] Silence warnings about incompatible plugins gdb-buildbot
2020-06-19 23:27 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-20 0:04 [binutils-gdb] [gdb/testsuite] Limit default_target_compile override gdb-buildbot
2020-06-20 0:23 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-21 1:10 [binutils-gdb] Fix gdb.base/list-missing-source.exp on remote host gdb-buildbot
2020-06-21 1:10 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-21 13:34 [binutils-gdb] PR26132, ar creates invalid libraries for some targets with plugins enabled gdb-buildbot
2020-06-21 13:34 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-21 18:16 [binutils-gdb] Various procfs.c cleanups gdb-buildbot
2020-06-21 18:16 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-22 2:50 [binutils-gdb] RISC-V: Don't assume the priv attributes are in order when handling them gdb-buildbot
2020-06-22 2:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-22 11:01 [binutils-gdb] Solaris, target_wait(), don't rely on inferior_ptid gdb-buildbot
2020-06-22 11:01 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-22 12:47 [binutils-gdb] gdb/jit: return bool in jit_breakpoint_re_set_internal and jit_read_descriptor gdb-buildbot
2020-06-22 12:47 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-22 15:37 [binutils-gdb] aarch64: Normalize and sort feature bit macros gdb-buildbot
2020-06-22 15:37 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-22 17:58 [binutils-gdb] Disable parts of gdb.base/source-dir.exp on remote host gdb-buildbot
2020-06-22 17:58 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-22 19:54 [binutils-gdb] default-args: allow to define default arguments for aliases gdb-buildbot
2020-06-22 20:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-22 22:07 [binutils-gdb] NEWS and documentation for alias default-args related concept and commands gdb-buildbot
2020-06-22 22:07 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-23 9:50 [binutils-gdb] gdb: Add --with-python-libdir to gdb's --configuration output gdb-buildbot
2020-06-23 9:50 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-23 12:09 [binutils-gdb] Avoid testcase build failures with -Wunused-value gdb-buildbot
2020-06-23 12:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-23 16:13 [binutils-gdb] gdb: Convert language la_emitchar field to a method gdb-buildbot
2020-06-23 16:13 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-23 17:11 [binutils-gdb] gdb: Convert language la_printchar field to a method gdb-buildbot
2020-06-23 17:11 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-23 18:09 [binutils-gdb] gdb: Convert language la_printstr field to a method gdb-buildbot
2020-06-23 18:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-23 21:04 [binutils-gdb] Improve -Wunused-value testcase build failures fix gdb-buildbot
2020-06-23 21:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-23 22:49 [binutils-gdb] Fix "maint selftest" regression, add struct scoped_mock_context gdb-buildbot
2020-06-23 23:09 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-24 2:03 [binutils-gdb] gdb: Allow target description to be dumped even when it is remote gdb-buildbot
2020-06-24 2:03 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-24 3:00 [binutils-gdb] gdb: Print compatible information within print_xml_feature gdb-buildbot
2020-06-24 3:00 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2020-06-24 3:57 [binutils-gdb] gdb: New maintenance command to print XML target description gdb-buildbot
2020-06-24 3:57 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master 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).