public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
  2019-12-29 12:17 [binutils-gdb] PR15350, Fix compressed debug sections for PE targets gdb-buildbot
@ 2019-12-29 12:04 ` gdb-buildbot
  2019-12-29 12:44 ` Failures on Fedora-i686, " gdb-buildbot
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2019-12-29 12:04 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/1542

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a6e5765ff1c5fdebaf4953eed619a717178cc7e6

Subject of commit:
        PR15350, Fix compressed debug sections for PE targets

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

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.table.gz>


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

* [binutils-gdb] PR15350, Fix compressed debug sections for PE targets
@ 2019-12-29 12:17 gdb-buildbot
  2019-12-29 12:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: gdb-buildbot @ 2019-12-29 12:17 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT a6e5765ff1c5fdebaf4953eed619a717178cc7e6 ***

commit a6e5765ff1c5fdebaf4953eed619a717178cc7e6
Author:     Alan Modra <amodra@gmail.com>
AuthorDate: Sun Dec 29 12:41:12 2019 +1030
Commit:     Alan Modra <amodra@gmail.com>
CommitDate: Sun Dec 29 21:25:39 2019 +1030

    PR15350, Fix compressed debug sections for PE targets
    
            PR 15350
            * bfd.c (bfd_update_compression_header): Write zlib header for
            formats other than ELF too.

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 838d9ee0b4..af2ddfa5e0 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,10 @@
+2019-12-29  Hannes Domani  <ssbssa@yahoo.de>
+	    Alan Modra  <amodra@gmail.com>
+
+	PR 15350
+	* bfd.c (bfd_update_compression_header): Write zlib header for
+	formats other than ELF too.
+
 2019-12-26  Alan Modra  <amodra@gmail.com>
 
 	* som.c (setup_sections): Don't overflow space_strings_size.  Use
diff --git a/bfd/bfd.c b/bfd/bfd.c
index a3c522cbf8..b6821fa20f 100644
--- a/bfd/bfd.c
+++ b/bfd/bfd.c
@@ -2540,59 +2540,57 @@ void
 bfd_update_compression_header (bfd *abfd, bfd_byte *contents,
 			       asection *sec)
 {
-  if ((abfd->flags & BFD_COMPRESS) != 0)
+  if ((abfd->flags & BFD_COMPRESS) == 0)
+    abort ();
+
+  switch (bfd_get_flavour (abfd))
     {
-      if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
+    case bfd_target_elf_flavour:
+      if ((abfd->flags & BFD_COMPRESS_GABI) != 0)
 	{
-	  if ((abfd->flags & BFD_COMPRESS_GABI) != 0)
-	    {
-	      const struct elf_backend_data *bed
-		= get_elf_backend_data (abfd);
+	  const struct elf_backend_data *bed = get_elf_backend_data (abfd);
 
-	      /* Set the SHF_COMPRESSED bit.  */
-	      elf_section_flags (sec) |= SHF_COMPRESSED;
+	  /* Set the SHF_COMPRESSED bit.  */
+	  elf_section_flags (sec) |= SHF_COMPRESSED;
 
-	      if (bed->s->elfclass == ELFCLASS32)
-		{
-		  Elf32_External_Chdr *echdr
-		    = (Elf32_External_Chdr *) contents;
-		  bfd_put_32 (abfd, ELFCOMPRESS_ZLIB, &echdr->ch_type);
-		  bfd_put_32 (abfd, sec->size, &echdr->ch_size);
-		  bfd_put_32 (abfd, 1 << sec->alignment_power,
-			      &echdr->ch_addralign);
-		  /* bfd_log2 (alignof (Elf32_Chdr)) */
-		  bfd_set_section_alignment (sec, 2);
-		}
-	      else
-		{
-		  Elf64_External_Chdr *echdr
-		    = (Elf64_External_Chdr *) contents;
-		  bfd_put_32 (abfd, ELFCOMPRESS_ZLIB, &echdr->ch_type);
-		  bfd_put_32 (abfd, 0, &echdr->ch_reserved);
-		  bfd_put_64 (abfd, sec->size, &echdr->ch_size);
-		  bfd_put_64 (abfd, 1 << sec->alignment_power,
-			      &echdr->ch_addralign);
-		  /* bfd_log2 (alignof (Elf64_Chdr)) */
-		  bfd_set_section_alignment (sec, 3);
-		}
+	  if (bed->s->elfclass == ELFCLASS32)
+	    {
+	      Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) contents;
+	      bfd_put_32 (abfd, ELFCOMPRESS_ZLIB, &echdr->ch_type);
+	      bfd_put_32 (abfd, sec->size, &echdr->ch_size);
+	      bfd_put_32 (abfd, 1 << sec->alignment_power,
+			  &echdr->ch_addralign);
+	      /* bfd_log2 (alignof (Elf32_Chdr)) */
+	      bfd_set_section_alignment (sec, 2);
 	    }
 	  else
 	    {
-	      /* Clear the SHF_COMPRESSED bit.  */
-	      elf_section_flags (sec) &= ~SHF_COMPRESSED;
-
-	      /* Write the zlib header.  It should be "ZLIB" followed by
-		 the uncompressed section size, 8 bytes in big-endian
-		 order.  */
-	      memcpy (contents, "ZLIB", 4);
-	      bfd_putb64 (sec->size, contents + 4);
-	      /* No way to keep the original alignment, just use 1 always. */
-	      bfd_set_section_alignment (sec, 0);
+	      Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) contents;
+	      bfd_put_32 (abfd, ELFCOMPRESS_ZLIB, &echdr->ch_type);
+	      bfd_put_32 (abfd, 0, &echdr->ch_reserved);
+	      bfd_put_64 (abfd, sec->size, &echdr->ch_size);
+	      bfd_put_64 (abfd, 1 << sec->alignment_power,
+			  &echdr->ch_addralign);
+	      /* bfd_log2 (alignof (Elf64_Chdr)) */
+	      bfd_set_section_alignment (sec, 3);
 	    }
+	  break;
 	}
+
+      /* Clear the SHF_COMPRESSED bit.  */
+      elf_section_flags (sec) &= ~SHF_COMPRESSED;
+      /* Fall through.  */
+
+    default:
+      /* Write the zlib header.  It should be "ZLIB" followed by
+	 the uncompressed section size, 8 bytes in big-endian
+	 order.  */
+      memcpy (contents, "ZLIB", 4);
+      bfd_putb64 (sec->size, contents + 4);
+      /* No way to keep the original alignment, just use 1 always. */
+      bfd_set_section_alignment (sec, 0);
+      break;
     }
-  else
-    abort ();
 }
 
 /*


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

* Failures on Fedora-i686, branch master
  2019-12-29 12:17 [binutils-gdb] PR15350, Fix compressed debug sections for PE targets gdb-buildbot
  2019-12-29 12:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
@ 2019-12-29 12:44 ` gdb-buildbot
  2019-12-29 12:47 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2019-12-29 12:44 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/1679

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a6e5765ff1c5fdebaf4953eed619a717178cc7e6

Subject of commit:
        PR15350, Fix compressed debug sections for PE targets

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/catch-syscall.exp: multiple targets: insert catch syscall on syscall 1 -- write on i386:x86-64
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: crlf: set tdesc filename tdesc-arch.xml
new KFAIL: gdb.xml/tdesc-arch.exp: set tdesc filename tdesc-arch.xml
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-i686/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.table.gz>


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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2019-12-29 12:17 [binutils-gdb] PR15350, Fix compressed debug sections for PE targets gdb-buildbot
  2019-12-29 12:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
  2019-12-29 12:44 ` Failures on Fedora-i686, " gdb-buildbot
@ 2019-12-29 12:47 ` gdb-buildbot
  2019-12-29 13:20 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2019-12-29 12:47 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-cc-with-index

Worker:
        fedora-x86-64-2

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

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a6e5765ff1c5fdebaf4953eed619a717178cc7e6

Subject of commit:
        PR15350, Fix compressed debug sections for PE targets

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: step after disabling 3: step 3
PASS -> FAIL: gdb.base/skip.exp: step after disabling 3: step 5
new FAIL: gdb.base/skip.exp: step after enable 3: info breakpoints
PASS -> FAIL: gdb.base/skip.exp: step after enable 3: info skip shows entry as enabled
PASS -> UNRESOLVED: gdb.base/skip.exp: step after enable 3: step 1
new FAIL: gdb.base/skip.exp: step using -fi + -fu: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -fi + -fu: skip -fi skip1.c -fu test_skip
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: skip delete
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 1
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 2
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 5
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 5
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> FAIL: gdb.multi/multi-arch-exec.exp: first_arch=1: selected_thread=1: follow_exec_mode=new: continue across exec that changes architecture
PASS -> FAIL: gdb.threads/gcore-stale-thread.exp: save a corefile
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j
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-cc-with-index/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-cc-with-index/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.table.gz>


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

* Failures on Fedora-x86_64-m32, branch master
  2019-12-29 12:17 [binutils-gdb] PR15350, Fix compressed debug sections for PE targets gdb-buildbot
                   ` (2 preceding siblings ...)
  2019-12-29 12:47 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2019-12-29 13:20 ` gdb-buildbot
  2019-12-29 13:21 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2019-12-29 13:20 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m32

Worker:
        fedora-x86-64-4

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

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a6e5765ff1c5fdebaf4953eed619a717178cc7e6

Subject of commit:
        PR15350, Fix compressed debug sections for PE targets

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

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
==============================================

*** Complete 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/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.table.gz>


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

* Failures on Fedora-x86_64-m64, branch master
  2019-12-29 12:17 [binutils-gdb] PR15350, Fix compressed debug sections for PE targets gdb-buildbot
                   ` (3 preceding siblings ...)
  2019-12-29 13:20 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2019-12-29 13:21 ` gdb-buildbot
  2019-12-29 13:32 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2019-12-29 13:21 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/1737

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a6e5765ff1c5fdebaf4953eed619a717178cc7e6

Subject of commit:
        PR15350, Fix compressed debug sections for PE targets

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: step after disabling 3: step 3
new FAIL: gdb.base/skip.exp: step using -fi + -fu: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -fi + -fu: skip -fi skip1.c -fu test_skip
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: skip delete
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 1
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 2
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 5
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 5
new FAIL: gdb.base/skip.exp: step using -rfu for baz: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -rfu for baz: skip disable
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 5
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> UNRESOLVED: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: main stop
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_parallel: inner_threads: 2nd stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd 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-m64/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2019-12-29 12:17 [binutils-gdb] PR15350, Fix compressed debug sections for PE targets gdb-buildbot
                   ` (4 preceding siblings ...)
  2019-12-29 13:21 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2019-12-29 13:32 ` gdb-buildbot
  2019-12-29 13:48 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2019-12-29 13:32 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-4

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/4/builds/1676

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a6e5765ff1c5fdebaf4953eed619a717178cc7e6

Subject of commit:
        PR15350, Fix compressed debug sections for PE targets

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: skip delete completion: cmd complete "skip delete 2 "
PASS -> FAIL: gdb.base/skip.exp: skip delete completion: cmd complete "skip delete 2-"
PASS -> FAIL: gdb.base/skip.exp: skip delete completion: tab complete "skip delete 2 "
PASS -> FAIL: gdb.base/skip.exp: skip delete completion: tab complete "skip delete 2-"
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 5
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m32/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m32/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2019-12-29 12:17 [binutils-gdb] PR15350, Fix compressed debug sections for PE targets gdb-buildbot
                   ` (5 preceding siblings ...)
  2019-12-29 13:32 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2019-12-29 13:48 ` gdb-buildbot
  2019-12-29 13:56 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  2019-12-29 13:59 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2019-12-29 13:48 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-3

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

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a6e5765ff1c5fdebaf4953eed619a717178cc7e6

Subject of commit:
        PR15350, Fix compressed debug sections for PE targets

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugSEP: BINprelinkNOdebugNOpieNO: INNER: symbol-less: entry point reached
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugSEP: BINprelinkNOdebugNOpieYES: INNER: symbol-less: entry point reached
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 -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/attach-into-signal.exp: threaded: thread apply 2 print $_siginfo.si_signo
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: 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
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2019-12-29 12:17 [binutils-gdb] PR15350, Fix compressed debug sections for PE targets gdb-buildbot
                   ` (6 preceding siblings ...)
  2019-12-29 13:48 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-12-29 13:56 ` gdb-buildbot
  2019-12-29 13:59 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2019-12-29 13:56 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m32

Worker:
        fedora-x86-64-1

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

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a6e5765ff1c5fdebaf4953eed619a717178cc7e6

Subject of commit:
        PR15350, Fix compressed debug sections for PE targets

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: step after disabling 3: step 5
new FAIL: gdb.base/skip.exp: step using -fi + -fu: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -fi + -fu: skip -fi skip1.c -fu test_skip
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: skip delete
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 1
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 2
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 5
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 5
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2019-12-29 12:17 [binutils-gdb] PR15350, Fix compressed debug sections for PE targets gdb-buildbot
                   ` (7 preceding siblings ...)
  2019-12-29 13:56 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2019-12-29 13:59 ` gdb-buildbot
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2019-12-29 13:59 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m64

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/22/builds/1674

Author:
        Alan Modra <amodra@gmail.com>

Commit tested:
        a6e5765ff1c5fdebaf4953eed619a717178cc7e6

Subject of commit:
        PR15350, Fix compressed debug sections for PE targets

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 5
new FAIL: gdb.base/skip.exp: step using -rfu for baz: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -rfu for baz: skip disable
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
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

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

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.gz>

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

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/a6/a6e5765ff1c5fdebaf4953eed619a717178cc7e6//xfail.table.gz>


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

end of thread, other threads:[~2019-12-29 13:56 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-29 12:17 [binutils-gdb] PR15350, Fix compressed debug sections for PE targets gdb-buildbot
2019-12-29 12:04 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master gdb-buildbot
2019-12-29 12:44 ` Failures on Fedora-i686, " gdb-buildbot
2019-12-29 12:47 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2019-12-29 13:20 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2019-12-29 13:21 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2019-12-29 13:32 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2019-12-29 13:48 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2019-12-29 13:56 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2019-12-29 13:59 ` 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).