public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Update comments about removed function
@ 2020-01-24 12:18 gdb-buildbot
  2020-01-24 12:25 ` Failures on Fedora-x86_64-m64, branch master gdb-buildbot
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: gdb-buildbot @ 2020-01-24 12:18 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 89203d40625ea3c835a19c8a4aff8bdeff479748 ***

commit 89203d40625ea3c835a19c8a4aff8bdeff479748
Author:     Christian Biesinger <cbiesinger@google.com>
AuthorDate: Thu Jan 23 15:52:05 2020 +0100
Commit:     Christian Biesinger <cbiesinger@google.com>
CommitDate: Fri Jan 24 12:34:48 2020 +0100

    Update comments about removed function
    
    regset_from_core_section doesn't exist anymore; it has been replaced
    by the iterate_over_regset_sections gdbarch method.  Update comments
    accordingly to not confuse readers.
    
    gdb/ChangeLog:
    
    2020-01-24  Christian Biesinger  <cbiesinger@google.com>
    
            * aarch64-fbsd-tdep.c (aarch64_fbsd_iterate_over_regset_sections):
            Update comment.
            * aarch64-linux-tdep.c (aarch64_linux_iterate_over_regset_sections):
            Likewise.
            * arm-fbsd-tdep.c (arm_fbsd_iterate_over_regset_sections): Likewise.
            * gdbcore.h (deprecated_add_core_fns): Update comment to point to
            the correct replacement (iterate_over_regset_sections).
            * riscv-fbsd-tdep.c (riscv_fbsd_iterate_over_regset_sections):
            Update comment.
    
    Change-Id: I5eea4d18e15edae5d6dfd5d0d6241e5b2ae40daa

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index ca2e49eb50..964a01d6f1 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,15 @@
+2020-01-24  Christian Biesinger  <cbiesinger@google.com>
+
+	* aarch64-fbsd-tdep.c (aarch64_fbsd_iterate_over_regset_sections):
+	Update comment.
+	* aarch64-linux-tdep.c (aarch64_linux_iterate_over_regset_sections):
+	Likewise.
+	* arm-fbsd-tdep.c (arm_fbsd_iterate_over_regset_sections): Likewise.
+	* gdbcore.h (deprecated_add_core_fns): Update comment to point to
+	the correct replacement (iterate_over_regset_sections).
+	* riscv-fbsd-tdep.c (riscv_fbsd_iterate_over_regset_sections):
+	Update comment.
+
 2020-01-24  Graham Markall  <graham.markall@embecosm.com>
 
 	PR gdb/23718
diff --git a/gdb/aarch64-fbsd-tdep.c b/gdb/aarch64-fbsd-tdep.c
index b923c5c474..0d41198ecd 100644
--- a/gdb/aarch64-fbsd-tdep.c
+++ b/gdb/aarch64-fbsd-tdep.c
@@ -134,7 +134,7 @@ const struct regset aarch64_fbsd_fpregset =
     regcache_supply_regset, regcache_collect_regset
   };
 
-/* Implement the "regset_from_core_section" gdbarch method.  */
+/* Implement the "iterate_over_regset_sections" gdbarch method.  */
 
 static void
 aarch64_fbsd_iterate_over_regset_sections (struct gdbarch *gdbarch,
diff --git a/gdb/aarch64-linux-tdep.c b/gdb/aarch64-linux-tdep.c
index 67046c4271..34ba0d87ba 100644
--- a/gdb/aarch64-linux-tdep.c
+++ b/gdb/aarch64-linux-tdep.c
@@ -582,7 +582,7 @@ aarch64_linux_collect_sve_regset (const struct regset *regset,
 			    size - SVE_HEADER_SIZE);
 }
 
-/* Implement the "regset_from_core_section" gdbarch method.  */
+/* Implement the "iterate_over_regset_sections" gdbarch method.  */
 
 static void
 aarch64_linux_iterate_over_regset_sections (struct gdbarch *gdbarch,
diff --git a/gdb/arm-fbsd-tdep.c b/gdb/arm-fbsd-tdep.c
index 417a805e67..de94d06c70 100644
--- a/gdb/arm-fbsd-tdep.c
+++ b/gdb/arm-fbsd-tdep.c
@@ -150,7 +150,7 @@ const struct regset arm_fbsd_vfpregset =
     regcache_supply_regset, regcache_collect_regset
   };
 
-/* Implement the "regset_from_core_section" gdbarch method.  */
+/* Implement the "iterate_over_regset_sections" gdbarch method.  */
 
 static void
 arm_fbsd_iterate_over_regset_sections (struct gdbarch *gdbarch,
diff --git a/gdb/gdbcore.h b/gdb/gdbcore.h
index 66e81dfe95..0a69d36ad7 100644
--- a/gdb/gdbcore.h
+++ b/gdb/gdbcore.h
@@ -269,8 +269,7 @@ private:
   std::string m_storage;
 };
 
-/* NOTE: cagney/2004-04-05: Replaced by "regset.h" and
-   regset_from_core_section().  */
+/* Replaced by the "iterate_over_regset_sections" gdbarch method.  */
 extern void deprecated_add_core_fns (struct core_fns *cf);
 extern int default_core_sniffer (struct core_fns *cf, bfd * abfd);
 extern int default_check_format (bfd * abfd);
diff --git a/gdb/riscv-fbsd-tdep.c b/gdb/riscv-fbsd-tdep.c
index 8a9295904d..6e0eb2bb78 100644
--- a/gdb/riscv-fbsd-tdep.c
+++ b/gdb/riscv-fbsd-tdep.c
@@ -81,7 +81,7 @@ const struct regset riscv_fbsd_fpregset =
     regcache_supply_regset, regcache_collect_regset
   };
 
-/* Implement the "regset_from_core_section" gdbarch method.  */
+/* Implement the "iterate_over_regset_sections" gdbarch method.  */
 
 static void
 riscv_fbsd_iterate_over_regset_sections (struct gdbarch *gdbarch,


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

* Failures on Fedora-x86_64-m64, branch master
  2020-01-24 12:18 [binutils-gdb] Update comments about removed function gdb-buildbot
@ 2020-01-24 12:25 ` gdb-buildbot
  2020-01-24 12:38 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2020-01-24 12:25 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m64

Worker:
        fedora-x86-64-4

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

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        89203d40625ea3c835a19c8a4aff8bdeff479748

Subject of commit:
        Update comments about removed function

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i02
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i12
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: first thread: print i22
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print z
==============================================

*** Complete 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/89/89203d40625ea3c835a19c8a4aff8bdeff479748//xfail.gz>

You can 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/89/89203d40625ea3c835a19c8a4aff8bdeff479748//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2020-01-24 12:18 [binutils-gdb] Update comments about removed function gdb-buildbot
  2020-01-24 12:25 ` Failures on Fedora-x86_64-m64, branch master gdb-buildbot
@ 2020-01-24 12:38 ` gdb-buildbot
  2020-01-24 12:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2020-01-24 12:38 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/1917

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        89203d40625ea3c835a19c8a4aff8bdeff479748

Subject of commit:
        Update comments about removed function

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

*** 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/Fedora-x86_64-native-extended-gdbserver-m32/89/89203d40625ea3c835a19c8a4aff8bdeff479748//xfail.gz>

You can 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/89/89203d40625ea3c835a19c8a4aff8bdeff479748//xfail.table.gz>


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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-24 12:18 [binutils-gdb] Update comments about removed function gdb-buildbot
  2020-01-24 12:25 ` Failures on Fedora-x86_64-m64, branch master gdb-buildbot
  2020-01-24 12:38 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2020-01-24 12:47 ` gdb-buildbot
  2020-01-24 13:17 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2020-01-24 12:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/19/builds/1824

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        89203d40625ea3c835a19c8a4aff8bdeff479748

Subject of commit:
        Update comments about removed function

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ti: can't run to main
PASS -> FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: run to foo
new UNRESOLVED: gdb.cp/local-static.exp: c++: couldn't run to breakpoint
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/89/89203d40625ea3c835a19c8a4aff8bdeff479748//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/89/89203d40625ea3c835a19c8a4aff8bdeff479748//xfail.table.gz>


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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2020-01-24 12:18 [binutils-gdb] Update comments about removed function gdb-buildbot
                   ` (3 preceding siblings ...)
  2020-01-24 13:17 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2020-01-24 13:17 ` gdb-buildbot
  2020-01-24 13:32 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2020-01-24 13:17 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-cc-with-index

Worker:
        fedora-x86-64-4

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

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        89203d40625ea3c835a19c8a4aff8bdeff479748

Subject of commit:
        Update comments about removed function

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-cc-with-index/89/89203d40625ea3c835a19c8a4aff8bdeff479748//xfail.gz>

You can 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/89/89203d40625ea3c835a19c8a4aff8bdeff479748//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2020-01-24 12:18 [binutils-gdb] Update comments about removed function gdb-buildbot
                   ` (2 preceding siblings ...)
  2020-01-24 12:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
@ 2020-01-24 13:17 ` gdb-buildbot
  2020-01-24 13:17 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
  2020-01-24 13:32 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2020-01-24 13:17 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/2/builds/1917

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        89203d40625ea3c835a19c8a4aff8bdeff479748

Subject of commit:
        Update comments about removed function

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

*** Diff to previous build ***
==============================================
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: symbol-less: entry point reached
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
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/omp-par-scope.exp: multi_scope: second thread: print i02
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 1st call: 2nd thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 1st stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 1st stop: print j
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: single_scope: first thread: print i3
==============================================

*** Complete 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/89/89203d40625ea3c835a19c8a4aff8bdeff479748//xfail.gz>

You can 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/89/89203d40625ea3c835a19c8a4aff8bdeff479748//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2020-01-24 12:18 [binutils-gdb] Update comments about removed function gdb-buildbot
                   ` (4 preceding siblings ...)
  2020-01-24 13:17 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2020-01-24 13:32 ` gdb-buildbot
  5 siblings, 0 replies; 7+ messages in thread
From: gdb-buildbot @ 2020-01-24 13:32 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/1918

Author:
        Christian Biesinger <cbiesinger@google.com>

Commit tested:
        89203d40625ea3c835a19c8a4aff8bdeff479748

Subject of commit:
        Update comments about removed function

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 3rd stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 3rd stop: print j
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print j
PASS -> KFAIL: gdb.threads/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
PASS -> FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar3 modified
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/89/89203d40625ea3c835a19c8a4aff8bdeff479748//xfail.gz>

You can 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/89/89203d40625ea3c835a19c8a4aff8bdeff479748//xfail.table.gz>


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

end of thread, other threads:[~2020-01-24 13:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-24 12:18 [binutils-gdb] Update comments about removed function gdb-buildbot
2020-01-24 12:25 ` Failures on Fedora-x86_64-m64, branch master gdb-buildbot
2020-01-24 12:38 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2020-01-24 12:47 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
2020-01-24 13:17 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2020-01-24 13:17 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2020-01-24 13:32 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).