public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Fedora-s390x-m64, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
@ 2017-11-24 20:00 ` sergiodj+buildbot
2017-11-24 21:27 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
` (12 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 20:00 UTC (permalink / raw)
To: gdb-testers
Buildslave:
marist-fedora-s390x
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-s390x-m64/builds/7112>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-s390x-m64/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 10
new FAIL: gdb.threads/corethreads.exp: print pthread_t of thread1
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=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:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-s390x-m64/xfails/master/xfail;hb=5cc2d8c>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-s390x-m64/xfails/master/xfail.table;hb=5cc2d8c>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [binutils-gdb] remote: C++ify thread_item and threads_listing_context
@ 2017-11-24 20:00 sergiodj+buildbot
2017-11-24 20:00 ` Failures on Fedora-s390x-m64, branch master sergiodj+buildbot
` (13 more replies)
0 siblings, 14 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 20:00 UTC (permalink / raw)
To: gdb-testers
*** TEST RESULTS FOR COMMIT 21fe1c752e254167d953fa8c846280f63a3a5290 ***
Author: Simon Marchi <simon.marchi@polymtl.ca>
Branch: master
Commit: 21fe1c752e254167d953fa8c846280f63a3a5290
remote: C++ify thread_item and threads_listing_context
This patch C++ifies the thread_item and threads_listing_context
structures in remote.c. thread_item::{extra,name} are changed to
std::string. As a result, there's a bit of awkwardness in
remote_update_thread_list, where we have to xstrdup those strings when
filling the private_thread_info structure. This is removed in the
following patch, where private_thread_info is also C++ified and its
corresponding fields made std::string too. The xstrdup then becomes an
std::move.
Other than that there's nothing really special, it's a usual day-to-day
VEC -> vector and char* -> std::string change. It allows removing a
cleanup in remote_update_thread_list.
Note that an overload of hex2bin that returns a gdb::byte_vector is
added, with corresponding selftests.
gdb/ChangeLog:
* remote.c (struct thread_item): Add constructor, disable copy
construction and copy assignment, define default move
construction and move assignment.
<extra, name>: Change type to std::string.
<core>: Initialize.
<thread_handle>: Make non-pointer.
(thread_item_t): Remove typedef.
(DEF_VEC_O(thread_item_t)): Remove.
(threads_listing_context) <contains_thread>: New method.
<remove_thread>: New method.
<items>: Change type to std::vector.
(clear_threads_listing_context): Remove.
(threads_listing_context_remove): Remove.
(remote_newthread_step): Use thread_item constructor, adjust to
change to std::vector.
(start_thread): Use thread_item constructor, adjust to change to
std::vector.
(end_thread): Adjust to change to std::vector and std::string.
(remote_get_threads_with_qthreadinfo): Use thread_item
constructor, adjust to std::vector.
(remote_update_thread_list): Adjust to change to std::vector and
std::string, use threads_listing_context methods.
(remove_child_of_pending_fork): Adjust.
(remove_new_fork_children): Adjust.
* Makefile.in (SUBDIR_UNITTESTS_SRCS): Add rsp-low-selftests.c.
(SUBDIR_UNITTESTS_OBS): Add rsp-low-selftests.o.
* unittests/rsp-low-selftests.c: New file.
* common/rsp-low.h: Include common/byte-vector.h.
(hex2bin): New overload.
* common/rsp-low.c (hex2bin): New overload.
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
2017-11-24 20:00 ` Failures on Fedora-s390x-m64, branch master sergiodj+buildbot
@ 2017-11-24 21:27 ` sergiodj+buildbot
2017-11-24 21:41 ` Failures on Fedora-i686, " sergiodj+buildbot
` (11 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 21:27 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-3
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/8094>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Anonymous: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Private-Anonymous: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Shared-Anonymous: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Shared-Anonymous: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for DoNotDump: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for DoNotDump: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Shared-Anon-File: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-native-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-shared-anon-file.gcore
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: continue to pagination
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: no double prompt
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: set height unlimited
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.threads/clone-new-thread-event.exp: catch SIGUSR1
PASS -> FAIL: gdb.threads/names.exp: list threads
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: 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:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-gdbserver-m32/xfails/master/xfail;hb=18b3ca2>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-gdbserver-m32/xfails/master/xfail.table;hb=18b3ca2>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Fedora-i686, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
2017-11-24 20:00 ` Failures on Fedora-s390x-m64, branch master sergiodj+buildbot
2017-11-24 21:27 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
@ 2017-11-24 21:41 ` sergiodj+buildbot
2017-11-24 21:50 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
` (10 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 21:41 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-3
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-i686/builds/8132>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-i686/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Anonymous: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-i686/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Private-Anonymous: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-i686/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Shared-Anonymous: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-i686/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Shared-Anonymous: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-i686/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for DoNotDump: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-i686/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for DoNotDump: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-i686/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Shared-Anon-File: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-i686/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-shared-anon-file.gcore
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=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:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-i686/xfails/master/xfail;hb=4a17cb2>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-i686/xfails/master/xfail.table;hb=4a17cb2>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Fedora-x86_64-m64, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
` (2 preceding siblings ...)
2017-11-24 21:41 ` Failures on Fedora-i686, " sergiodj+buildbot
@ 2017-11-24 21:50 ` sergiodj+buildbot
2017-11-24 21:56 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
` (9 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 21:50 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-4
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-m64/builds/8150>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-m64/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Anonymous: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Private-Anonymous: no binary: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Shared-Anonymous: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Shared-Anonymous: no binary: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for DoNotDump: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for DoNotDump: no binary: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Shared-Anon-File: no binary: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-shared-anon-file.gcore
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 16
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-m64/xfails/master/xfail;hb=f7c5eef>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-m64/xfails/master/xfail.table;hb=f7c5eef>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Fedora-x86_64-cc-with-index, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
` (3 preceding siblings ...)
2017-11-24 21:50 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
@ 2017-11-24 21:56 ` sergiodj+buildbot
2017-11-24 22:14 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
` (8 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 21:56 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-3
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-cc-with-index/builds/8051>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-cc-with-index/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Anonymous: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-cc-with-index/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Private-Anonymous: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-cc-with-index/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Shared-Anonymous: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-cc-with-index/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Shared-Anonymous: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-cc-with-index/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for DoNotDump: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-cc-with-index/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for DoNotDump: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-cc-with-index/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Shared-Anon-File: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-cc-with-index/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-shared-anon-file.gcore
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-cc-with-index/xfails/master/xfail;hb=deb0d03>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-cc-with-index/xfails/master/xfail.table;hb=deb0d03>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
` (4 preceding siblings ...)
2017-11-24 21:56 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
@ 2017-11-24 22:14 ` sergiodj+buildbot
2017-11-24 22:30 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
` (7 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 22:14 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-3
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m64/builds/8091>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m64/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/clone-new-thread-event.exp: catch SIGUSR1
PASS -> FAIL: gdb.threads/names.exp: list threads
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-gdbserver-m64/xfails/master/xfail;hb=80312fe>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-gdbserver-m64/xfails/master/xfail.table;hb=80312fe>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
` (5 preceding siblings ...)
2017-11-24 22:14 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
@ 2017-11-24 22:30 ` sergiodj+buildbot
2017-11-24 22:35 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
` (6 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 22:30 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-extended-gdbserver-m32/builds/8098>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m32/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
PASS -> FAIL: gdb.ada/aliased_array.exp: print bt
PASS -> FAIL: gdb.ada/bp_reset.exp: break nested_sub
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/str_uninit.exp: print 1235813
PASS -> FAIL: gdb.base/attach.exp: starting with --pid
new FAIL: gdb.base/auxv.exp: load core file for info auxv on native core dump
new FAIL: gdb.base/auxv.exp: info auxv on native core dump
new FAIL: gdb.base/auxv.exp: matching auxv data from live and core
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: core: core loaded
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: core: core main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: attach: file
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: attach: attach final prompt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: attach: attach main bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: core: core loaded
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: core: seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: core: core main bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: core: core loaded
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: core: core main bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: core: core loaded
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: core: seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: core: core main bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: core: core loaded
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: core: core main bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: core: core loaded
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: core: seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: core: core main bt
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: core: core loaded
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: core: core main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: attach: attach main bt
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Anonymous: loading /home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-extended-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Private-Anonymous: no binary: loading /home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-extended-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Shared-Anonymous: loading /home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-extended-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Shared-Anonymous: no binary: loading /home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-extended-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for DoNotDump: loading /home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-extended-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for DoNotDump: no binary: loading /home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-extended-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Shared-Anon-File: no binary: loading /home/gdb-buildbot/fedora-x86-64-1/fedora-x86-64-native-extended-gdbserver-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-shared-anon-file.gcore
new FAIL: gdb.base/corefile.exp:
new FAIL: gdb.base/corefile.exp: core-file command
new FAIL: gdb.base/corefile.exp: print coremaker_data
new FAIL: gdb.base/corefile.exp: print coremaker_bss
new FAIL: gdb.base/corefile.exp: print coremaker_ro
new FAIL: gdb.base/corefile.exp: print func2::coremaker_local
new FAIL: gdb.base/corefile.exp: $_exitsignal prints SIGABRT
new FAIL: gdb.base/corefile.exp: $_exitcode is void
new FAIL: gdb.base/corefile.exp: backtrace in corefile.exp
new FAIL: gdb.base/corefile.exp: up in corefile.exp
new FAIL: gdb.base/corefile.exp: accessing original mmap data in core file
new FAIL: gdb.base/corefile.exp: accessing mmapped data in core file
new FAIL: gdb.base/corefile.exp: core-file warning-free
new FAIL: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: can't run to main
PASS -> FAIL: gdb.base/dprintf.exp: 1st dprintf, gdb
PASS -> FAIL: gdb.base/dprintf.exp: 2nd dprintf, gdb
PASS -> FAIL: gdb.base/dprintf-pending.exp: run to resolved dprintf
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 2
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 1
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 3
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 5
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 6
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: kill 6
PASS -> FAIL: gdb.compile/compile.exp: compile code struct_object.selffield = &struct_object
PASS -> FAIL: gdb.compile/compile.exp: print struct_object.selffield == &struct_object
PASS -> FAIL: gdb.compile/compile.exp: compile code struct_object.charfield = 1
PASS -> FAIL: gdb.compile/compile.exp: print struct_object.charfield
PASS -> FAIL: gdb.compile/compile.exp: compile code struct_object.ucharfield = 1
PASS -> FAIL: gdb.compile/compile.exp: print struct_object.ucharfield
PASS -> FAIL: gdb.compile/compile.exp: compile code struct_object.shortfield = -5
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
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: break break_fn
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: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/clone-new-thread-event.exp: catch SIGUSR1
new FAIL: gdb.threads/corethreads.exp: load core
new FAIL: gdb.threads/corethreads.exp: sanity check we see the core file
new FAIL: gdb.threads/corethreads.exp: print pthread_t of thread0
new FAIL: gdb.threads/corethreads.exp: print pthread_t of thread1
PASS -> FAIL: gdb.threads/names.exp: list threads
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:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-extended-gdbserver-m32/xfails/master/xfail;hb=aa4d0c3>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-extended-gdbserver-m32/xfails/master/xfail.table;hb=aa4d0c3>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
` (6 preceding siblings ...)
2017-11-24 22:30 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2017-11-24 22:35 ` sergiodj+buildbot
2017-11-24 23:01 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
` (5 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 22:35 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-4
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-extended-gdbserver-m64/builds/8136>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=DICOS: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Anonymous: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Private-Anonymous: no binary: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Shared-Anonymous: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Shared-Anonymous: no binary: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for DoNotDump: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for DoNotDump: no binary: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Private-Shared-Anon-File: no binary: loading /home/gdb-buildbot-2/fedora-x86-64-4/fedora-x86-64-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-shared-anon-file.gcore
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
new FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
new FAIL: 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=1: run failure detected
PASS -> FAIL: gdb.threads/clone-new-thread-event.exp: catch SIGUSR1
PASS -> FAIL: gdb.threads/names.exp: list threads
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:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-extended-gdbserver-m64/xfails/master/xfail;hb=988e415>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-extended-gdbserver-m64/xfails/master/xfail.table;hb=988e415>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Fedora-x86_64-m32, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
` (7 preceding siblings ...)
2017-11-24 22:35 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2017-11-24 23:01 ` sergiodj+buildbot
2017-11-25 3:23 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
` (4 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-24 23:01 UTC (permalink / raw)
To: gdb-testers
Buildslave:
fedora-x86-64-2
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-m32/builds/8109>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Fedora-x86_64-m32/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/corefile.exp: core
new FAIL: gdb.base/corefile.exp: run: load core again
new FAIL: gdb.base/corefile.exp: run: sanity check we see the core file
PASS -> FAIL: gdb.base/dprintf-detach.exp: bai=on ds=call dd=on: re-attach to inferior
PASS -> FAIL: gdb.base/reread-readsym.exp: source reread-readsym.gdb 1
PASS -> FAIL: gdb.cp/templates.exp: ptype T5<int>
PASS -> FAIL: gdb.cp/templates.exp: ptype t5i
PASS -> FAIL: gdb.cp/templates.exp: constructor breakpoint
new FAIL: gdb.cp/templates.exp: destructor_breakpoint
PASS -> FAIL: gdb.cp/templates.exp: value method breakpoint
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: 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:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-m32/xfails/master/xfail;hb=47d5b32>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-m32/xfails/master/xfail.table;hb=47d5b32>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Ubuntu-AArch64-native-gdbserver-m64, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
` (8 preceding siblings ...)
2017-11-24 23:01 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
@ 2017-11-25 3:23 ` sergiodj+buildbot
2017-11-25 3:28 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
` (3 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 3:23 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-aarch64-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch64-native-gdbserver-m64/builds/3592>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch64-native-gdbserver-m64/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/sigbpt.exp:
PASS -> FAIL: gdb.threads/clone-new-thread-event.exp: catch SIGUSR1
PASS -> FAIL: gdb.threads/names.exp: list threads
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch64-native-gdbserver-m64/xfails/master/xfail;hb=b32a24c>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch64-native-gdbserver-m64/xfails/master/xfail.table;hb=b32a24c>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
` (9 preceding siblings ...)
2017-11-25 3:23 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
@ 2017-11-25 3:28 ` sergiodj+buildbot
2017-11-25 3:55 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
` (2 subsequent siblings)
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 3:28 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-native-extended-gdbserver-m32/builds/2206>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-native-extended-gdbserver-m32/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=11: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=12: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=13: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=15: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=16: wait for stops
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST. PLEASE CONTACT THE BUILDBOT ADMIN.
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Ubuntu-AArch32-native-gdbserver-m32, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
` (10 preceding siblings ...)
2017-11-25 3:28 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2017-11-25 3:55 ` sergiodj+buildbot
2017-11-25 4:20 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
2017-11-25 4:22 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 3:55 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-native-gdbserver-m32/builds/2188>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-native-gdbserver-m32/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** 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:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-native-gdbserver-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-native-gdbserver-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Ubuntu-AArch32-m32, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
` (11 preceding siblings ...)
2017-11-25 3:55 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
@ 2017-11-25 4:20 ` sergiodj+buildbot
2017-11-25 4:22 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 4:20 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-trusty-aarch32-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/2207>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
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:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail;hb=>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch32-m32/xfails/master/xfail.table;hb=>
^ permalink raw reply [flat|nested] 15+ messages in thread
* Failures on Ubuntu-AArch64-m64, branch master
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
` (12 preceding siblings ...)
2017-11-25 4:20 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
@ 2017-11-25 4:22 ` sergiodj+buildbot
13 siblings, 0 replies; 15+ messages in thread
From: sergiodj+buildbot @ 2017-11-25 4:22 UTC (permalink / raw)
To: gdb-testers
Buildslave:
ubuntu-aarch64-1
Full Build URL:
<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch64-m64/builds/3613>
Commit(s) tested:
21fe1c752e254167d953fa8c846280f63a3a5290
Author(s) (in the same order as the commits):
Simon Marchi <simon.marchi@polymtl.ca>
Subject:
remote: C++ify thread_item and threads_listing_context
Testsuite log (gdb.sum and gdb.log) URL(s):
<http://gdb-build.sergiodj.net/results/Ubuntu-AArch64-m64/21/21fe1c752e254167d953fa8c846280f63a3a5290/>
*** Diff to previous build ***
============================
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: core: core loaded
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: core: core main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: attach: set verbose on
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: attach: file
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: attach: attach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: attach: attach final prompt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: attach: attach main bt
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: info files
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: core: core loaded
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: core: seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: core: core main bt
PASS -> FAIL: gdb.base/checkpoint.exp: break1 start
PASS -> FAIL: gdb.base/checkpoint.exp: break1 two
PASS -> FAIL: gdb.base/checkpoint.exp: break1 three
PASS -> FAIL: gdb.base/checkpoint.exp: break1 four
PASS -> FAIL: gdb.base/checkpoint.exp: break1 five
PASS -> FAIL: gdb.base/checkpoint.exp: break1 six
PASS -> FAIL: gdb.base/checkpoint.exp: break1 seven
PASS -> FAIL: gdb.base/checkpoint.exp: break1 eight
PASS -> FAIL: gdb.base/checkpoint.exp: break1 nine
PASS -> FAIL: gdb.base/checkpoint.exp: break1 ten
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 54
PASS -> FAIL: gdb.base/checkpoint.exp: break2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 57
PASS -> FAIL: gdb.base/checkpoint.exp: break3 one
PASS -> FAIL: gdb.base/checkpoint.exp: diff input and output one
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 49
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: diff input and output two
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 59
PASS -> FAIL: gdb.base/checkpoint.exp: break4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: exit, dropped into next fork one
PASS -> FAIL: gdb.base/checkpoint.exp: exit, dropped into next fork two
PASS -> FAIL: gdb.base/checkpoint.exp: exit, dropped into next fork three
PASS -> FAIL: gdb.base/checkpoint.exp: exit, dropped into next fork four
PASS -> FAIL: gdb.base/checkpoint.exp: exit, dropped into next fork five
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
new FAIL: gdb.base/corefile.exp: core-file command
new FAIL: gdb.base/corefile.exp: print coremaker_data
new FAIL: gdb.base/corefile.exp: print coremaker_bss
new FAIL: gdb.base/corefile.exp: print coremaker_ro
new FAIL: gdb.base/corefile.exp: print func2::coremaker_local
new FAIL: gdb.base/corefile.exp: $_exitsignal prints SIGABRT
new FAIL: gdb.base/corefile.exp: $_exitcode is void
new FAIL: gdb.base/corefile.exp: backtrace in corefile.exp
new FAIL: gdb.base/corefile.exp: up in corefile.exp
new FAIL: gdb.base/corefile.exp: accessing original mmap data in core file
new FAIL: gdb.base/corefile.exp: accessing mmapped data in core file
new FAIL: gdb.base/corefile.exp: core
new FAIL: gdb.base/corefile.exp: run: load core again
new FAIL: gdb.base/corefile.exp: run: sanity check we see the core file
new FAIL: gdb.base/corefile.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: quit with a process
new FAIL: gdb.base/corefile.exp: no question: load core
new FAIL: gdb.base/corefile.exp: quit with a core file
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: non-stop: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: all-stop: schedule-multiple=on: can't run to main
new FAIL: gdb.base/fork-running-state.exp: detach-on-fork=off: follow-fork=parent: all-stop: schedule-multiple=off: can't run to main
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch64-m64/xfails/master/xfail;hb=2289e31>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch64-m64/xfails/master/xfail.table;hb=2289e31>
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2017-11-25 4:22 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-24 20:00 [binutils-gdb] remote: C++ify thread_item and threads_listing_context sergiodj+buildbot
2017-11-24 20:00 ` Failures on Fedora-s390x-m64, branch master sergiodj+buildbot
2017-11-24 21:27 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
2017-11-24 21:41 ` Failures on Fedora-i686, " sergiodj+buildbot
2017-11-24 21:50 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
2017-11-24 21:56 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
2017-11-24 22:14 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
2017-11-24 22:30 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
2017-11-24 22:35 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2017-11-24 23:01 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
2017-11-25 3:23 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
2017-11-25 3:28 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
2017-11-25 3:55 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
2017-11-25 4:20 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
2017-11-25 4:22 ` Failures on Ubuntu-AArch64-m64, " sergiodj+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).