public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Fedora-i686, branch master
  2019-07-02 14:38 [binutils-gdb] Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial gdb-buildbot
@ 2019-07-02 14:38 ` gdb-buildbot
  2019-07-02 14:54 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2019-07-02 14:38 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/144

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        125f83f66c10c89530d011f4f81324b1f43afcda

Subject of commit:
        Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial.

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
new FAIL: gdb.python/py-finish-breakpoint2.exp: check FinishBreakpoint in catch
new FAIL: gdb.python/py-finish-breakpoint2.exp: check finish BP removal
new FAIL: gdb.python/py-finish-breakpoint2.exp: continue to second exception
new FAIL: gdb.python/py-finish-breakpoint2.exp: set FinishBP after the exception
new FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs: deref_refs=true
new FAIL: gdb.python/py-format-string.exp: format_string: lang_cpp: a_base_ref with option deref_refs=True, static_members=False
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.table.gz>


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

* [binutils-gdb] Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial.
@ 2019-07-02 14:38 gdb-buildbot
  2019-07-02 14:38 ` Failures on Fedora-i686, branch master gdb-buildbot
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: gdb-buildbot @ 2019-07-02 14:38 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 125f83f66c10c89530d011f4f81324b1f43afcda ***

commit 125f83f66c10c89530d011f4f81324b1f43afcda
Author:     Nick Clifton <nickc@redhat.com>
AuthorDate: Tue Jul 2 14:14:13 2019 +0100
Commit:     Nick Clifton <nickc@redhat.com>
CommitDate: Tue Jul 2 14:14:13 2019 +0100

    Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial.
    
            PR 24753
    bfd     * compress.c (bfd_get_full_section_contents): Do not complain
            about linker created sections that are larger than the file size.
    
    ld      * emultempl/aarch64elf.em (_aarch64_add_stub_section): Include the
            LINKER_CREATED section flag when creating the stub section.

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index af25e433af..063af9ca10 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,9 @@
+2019-07-02  Nick Clifton  <nickc@redhat.com>
+
+	PR 24753
+	* compress.c (bfd_get_full_section_contents): Do not complain
+	about linker created sections that are larger than the file size.
+
 2019-07-02  Christophe Lyon  <christophe.lyon@linaro.org>
 
 	* bfd/elf32-arm.c (CMSE_STUB_NAME): New define.
diff --git a/bfd/compress.c b/bfd/compress.c
index cba281dca4..32de09923d 100644
--- a/bfd/compress.c
+++ b/bfd/compress.c
@@ -253,6 +253,9 @@ bfd_get_full_section_contents (bfd *abfd, sec_ptr sec, bfd_byte **ptr)
 	  ufile_ptr filesize = bfd_get_file_size (abfd);
 	  if (filesize > 0
 	      && filesize < sz
+	      /* PR 24753: Linker created sections can be larger than
+		 the file size, eg if they are being used to hold stubs.  */
+	      && (bfd_get_section_flags (abfd, sec) & SEC_LINKER_CREATED) == 0
 	      /* The MMO file format supports its own special compression
 		 technique, but it uses COMPRESS_SECTION_NONE when loading
 		 a section's contents.  */
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 0f0619626d..d4916f4b69 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,9 @@
+2019-07-02  Nick Clifton  <nickc@redhat.com>
+
+	PR 24753
+	* emultempl/aarch64elf.em (_aarch64_add_stub_section): Include the
+	LINKER_CREATED section flag when creating the stub section.
+
 2019-07-02  Srinath Parvathaneni  <srinath.parvathaneni@arm.com>
 
 	* testsuite/ld-arm/arm-elf.exp: Add tests.
diff --git a/ld/emultempl/aarch64elf.em b/ld/emultempl/aarch64elf.em
index 4c13f26f4e..93f60a9b61 100644
--- a/ld/emultempl/aarch64elf.em
+++ b/ld/emultempl/aarch64elf.em
@@ -169,7 +169,7 @@ elf${ELFSIZE}_aarch64_add_stub_section (const char *stub_sec_name,
   lang_output_section_statement_type *os;
   struct hook_stub_info info;
 
-  flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE
+  flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE | SEC_LINKER_CREATED
 	   | SEC_HAS_CONTENTS | SEC_RELOC | SEC_IN_MEMORY | SEC_KEEP);
   stub_sec = bfd_make_section_anyway_with_flags (stub_file->the_bfd,
 						 stub_sec_name, flags);


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2019-07-02 14:38 [binutils-gdb] Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial gdb-buildbot
  2019-07-02 14:38 ` Failures on Fedora-i686, branch master gdb-buildbot
@ 2019-07-02 14:54 ` gdb-buildbot
  2019-07-02 14:55 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2019-07-02 14:54 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/142

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        125f83f66c10c89530d011f4f81324b1f43afcda

Subject of commit:
        Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial.

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

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
UNRESOLVED -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
UNRESOLVED -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
UNRESOLVED -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
PASS -> 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/Fedora-x86_64-native-extended-gdbserver-m32/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.gz>

You can 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/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.table.gz>


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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2019-07-02 14:38 [binutils-gdb] Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial gdb-buildbot
  2019-07-02 14:38 ` Failures on Fedora-i686, branch master gdb-buildbot
  2019-07-02 14:54 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2019-07-02 14:55 ` gdb-buildbot
  2019-07-02 14:56 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2019-07-02 14:55 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-cc-with-index

Worker:
        fedora-x86-64-1

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

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        125f83f66c10c89530d011f4f81324b1f43afcda

Subject of commit:
        Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial.

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

*** 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=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-cc-with-index/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.gz>

You can 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/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.table.gz>


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

* Failures on Fedora-x86_64-m32, branch master
  2019-07-02 14:38 [binutils-gdb] Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial gdb-buildbot
                   ` (2 preceding siblings ...)
  2019-07-02 14:55 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2019-07-02 14:56 ` gdb-buildbot
  2019-07-02 15:08 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2019-07-02 14:56 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m32

Worker:
        fedora-x86-64-2

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

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        125f83f66c10c89530d011f4f81324b1f43afcda

Subject of commit:
        Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial.

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/corefile.exp: core-file warning-free
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-m32/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2019-07-02 14:38 [binutils-gdb] Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial gdb-buildbot
                   ` (3 preceding siblings ...)
  2019-07-02 14:56 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2019-07-02 15:08 ` gdb-buildbot
  2019-07-02 15:19 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2019-07-02 15:08 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-4

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

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        125f83f66c10c89530d011f4f81324b1f43afcda

Subject of commit:
        Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial.

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

*** Diff to previous build ***
==============================================
UNRESOLVED -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
UNRESOLVED -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
UNRESOLVED -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
UNRESOLVED -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
==============================================

*** Complete 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/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.gz>

You can 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/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2019-07-02 14:38 [binutils-gdb] Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial gdb-buildbot
                   ` (4 preceding siblings ...)
  2019-07-02 15:08 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-07-02 15:19 ` gdb-buildbot
  2019-07-02 15:24 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  2019-07-05  3:42 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2019-07-02 15:19 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m32

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/24/builds/142

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        125f83f66c10c89530d011f4f81324b1f43afcda

Subject of commit:
        Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial.

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

*** 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/Fedora-x86_64-native-gdbserver-m32/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.gz>

You can 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/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2019-07-02 14:38 [binutils-gdb] Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial gdb-buildbot
                   ` (5 preceding siblings ...)
  2019-07-02 15:19 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2019-07-02 15:24 ` gdb-buildbot
  2019-07-05  3:42 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2019-07-02 15:24 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/142

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        125f83f66c10c89530d011f4f81324b1f43afcda

Subject of commit:
        Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial.

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 4
==============================================

*** Complete 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/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.gz>

You can 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/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.table.gz>


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

* Failures on Fedora-x86_64-m64, branch master
  2019-07-02 14:38 [binutils-gdb] Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial gdb-buildbot
                   ` (6 preceding siblings ...)
  2019-07-02 15:24 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
@ 2019-07-05  3:42 ` gdb-buildbot
  7 siblings, 0 replies; 9+ messages in thread
From: gdb-buildbot @ 2019-07-05  3:42 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m64

Worker:
        fedora-x86-64-2

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

Author:
        Nick Clifton <nickc@redhat.com>

Commit tested:
        125f83f66c10c89530d011f4f81324b1f43afcda

Subject of commit:
        Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial.

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

*** 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-m64/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.gz>

You can 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/12/125f83f66c10c89530d011f4f81324b1f43afcda//xfail.table.gz>


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

end of thread, other threads:[~2019-07-05  3:25 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-02 14:38 [binutils-gdb] Fix a bug recently introduced to the linker where it would complain about a section being larger than a file, even if the section was artificial gdb-buildbot
2019-07-02 14:38 ` Failures on Fedora-i686, branch master gdb-buildbot
2019-07-02 14:54 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2019-07-02 14:55 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2019-07-02 14:56 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2019-07-02 15:08 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2019-07-02 15:19 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2019-07-02 15:24 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
2019-07-05  3:42 ` Failures on Fedora-x86_64-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).