public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Fedora-i686, branch master
  2020-01-27  9:16 [binutils-gdb] Turn start_psymtab_common into a constructor gdb-buildbot
@ 2020-01-27  9:13 ` gdb-buildbot
  2020-01-27  9:46 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2020-01-27  9:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-3

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c3693a1d9466bc9d3abe004e66f1b56fed22ba61

Subject of commit:
        Turn start_psymtab_common into a constructor

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

*** 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 -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
new KFAIL: gdb.xml/tdesc-arch.exp: 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.gz>

You can 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.table.gz>


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

* [binutils-gdb] Turn start_psymtab_common into a constructor
@ 2020-01-27  9:16 gdb-buildbot
  2020-01-27  9:13 ` Failures on Fedora-i686, branch master gdb-buildbot
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: gdb-buildbot @ 2020-01-27  9:16 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT c3693a1d9466bc9d3abe004e66f1b56fed22ba61 ***

commit c3693a1d9466bc9d3abe004e66f1b56fed22ba61
Author:     Tom Tromey <tom@tromey.com>
AuthorDate: Tue Oct 22 17:08:16 2019 -0600
Commit:     Tom Tromey <tom@tromey.com>
CommitDate: Sun Jan 26 16:40:21 2020 -0700

    Turn start_psymtab_common into a constructor
    
    This turns start_psymtab_common into a constructor, and then changes
    the callers to use "new" directly.  This completes the psymtab
    allocation transition -- now it is possible for symbol readers to
    subclass struct partial_symtab.
    
    gdb/ChangeLog
    2020-01-26  Tom Tromey  <tom@tromey.com>
    
            * xcoffread.c (xcoff_start_psymtab): Use new.
            * psymtab.c (partial_symtab::partial_symtab): New constructor,
            renamed from start_psymtab_common.
            * psympriv.h (struct partial_symtab): Add new constructor.
            (start_psymtab_common): Don't declare.
            * mdebugread.c (parse_partial_symbols): Use new.
            * dwarf2read.c (create_partial_symtab): Use new.
            * dbxread.c (start_psymtab): Use new.
            * ctfread.c (create_partial_symtab): Use new.
    
    Change-Id: I5a0217bcb52bcfa442559771954bb66bd9ccbf02

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 854ac3144c..6353a00c15 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,15 @@
+2020-01-26  Tom Tromey  <tom@tromey.com>
+
+	* xcoffread.c (xcoff_start_psymtab): Use new.
+	* psymtab.c (partial_symtab::partial_symtab): New constructor,
+	renamed from start_psymtab_common.
+	* psympriv.h (struct partial_symtab): Add new constructor.
+	(start_psymtab_common): Don't declare.
+	* mdebugread.c (parse_partial_symbols): Use new.
+	* dwarf2read.c (create_partial_symtab): Use new.
+	* dbxread.c (start_psymtab): Use new.
+	* ctfread.c (create_partial_symtab): Use new.
+
 2020-01-26  Tom Tromey  <tom@tromey.com>
 
 	* xcoffread.c (xcoff_end_psymtab): Use new.
diff --git a/gdb/ctfread.c b/gdb/ctfread.c
index c41d96f3e5..e3931fbd3e 100644
--- a/gdb/ctfread.c
+++ b/gdb/ctfread.c
@@ -1299,7 +1299,7 @@ create_partial_symtab (const char *name,
   struct partial_symtab *pst;
   struct ctf_context *ccx;
 
-  pst = start_psymtab_common (objfile, name, 0);
+  pst = new partial_symtab (name, objfile, 0);
 
   ccx = XOBNEW (&objfile->objfile_obstack, struct ctf_context);
   ccx->fp = cfp;
diff --git a/gdb/dbxread.c b/gdb/dbxread.c
index 95270856a0..4e388fae50 100644
--- a/gdb/dbxread.c
+++ b/gdb/dbxread.c
@@ -1903,8 +1903,8 @@ static struct partial_symtab *
 start_psymtab (struct objfile *objfile, const char *filename, CORE_ADDR textlow,
 	       int ldsymoff)
 {
-  struct partial_symtab *result =
-    start_psymtab_common (objfile, filename, textlow);
+  struct partial_symtab *result = new partial_symtab (filename, objfile,
+						      textlow);
 
   result->read_symtab_private =
     XOBNEW (&objfile->objfile_obstack, struct symloc);
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
index 2cac286435..f865fa4848 100644
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -8027,7 +8027,7 @@ create_partial_symtab (struct dwarf2_per_cu_data *per_cu, const char *name)
   struct objfile *objfile = per_cu->dwarf2_per_objfile->objfile;
   struct partial_symtab *pst;
 
-  pst = start_psymtab_common (objfile, name, 0);
+  pst = new partial_symtab (name, objfile, 0);
 
   pst->psymtabs_addrmap_supported = true;
 
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c
index 2ec30ec1de..dafc7f4c9c 100644
--- a/gdb/mdebugread.c
+++ b/gdb/mdebugread.c
@@ -2609,9 +2609,7 @@ parse_partial_symbols (minimal_symbol_reader &reader,
 	textlow = fh->adr;
       else
 	textlow = 0;
-      pst = start_psymtab_common (objfile,
-				  fdr_name (fh),
-				  textlow);
+      pst = new partial_symtab (fdr_name (fh), objfile, textlow);
       pst->read_symtab_private = XOBNEW (&objfile->objfile_obstack, symloc);
       memset (pst->read_symtab_private, 0, sizeof (struct symloc));
 
diff --git a/gdb/psympriv.h b/gdb/psympriv.h
index 74ff10ef6a..82ae1b5d25 100644
--- a/gdb/psympriv.h
+++ b/gdb/psympriv.h
@@ -113,6 +113,14 @@ struct partial_symtab
   partial_symtab (const char *filename, struct objfile *objfile)
     ATTRIBUTE_NONNULL (2) ATTRIBUTE_NONNULL (3);
 
+  /* Like the above, but also sets the initial text low and text high
+     from the ADDR argument, and sets the global- and
+     static-offsets.  */
+
+  partial_symtab (const char *filename, struct objfile *objfile,
+		  CORE_ADDR addr)
+    ATTRIBUTE_NONNULL (2) ATTRIBUTE_NONNULL (3);
+
   /* Return the raw low text address of this partial_symtab.  */
   CORE_ADDR raw_text_low () const
   {
@@ -326,9 +334,6 @@ extern void add_psymbol_to_list (gdb::string_view name,
 
 extern void init_psymbol_list (struct objfile *objfile, int total_symbols);
 
-extern struct partial_symtab *start_psymtab_common (struct objfile *,
-						    const char *, CORE_ADDR);
-
 extern void end_psymtab_common (struct objfile *, struct partial_symtab *);
 
 static inline void
diff --git a/gdb/psymtab.c b/gdb/psymtab.c
index 844e718614..b31461c331 100644
--- a/gdb/psymtab.c
+++ b/gdb/psymtab.c
@@ -1475,24 +1475,18 @@ sort_pst_symbols (struct objfile *objfile, struct partial_symtab *pst)
     });
 }
 
-/* Allocate and partially fill a partial symtab.  It will be
-   completely filled at the end of the symbol list.
+/* Partially fill a partial symtab.  It will be completely filled at
+   the end of the symbol list.  */
 
-   FILENAME is the name of the symbol-file we are reading from.  */
-
-struct partial_symtab *
-start_psymtab_common (struct objfile *objfile,
-		      const char *filename,
-		      CORE_ADDR textlow)
+partial_symtab::partial_symtab (const char *filename,
+				struct objfile *objfile,
+				CORE_ADDR textlow)
+  : partial_symtab (filename, objfile)
 {
-  struct partial_symtab *psymtab;
-
-  psymtab = new partial_symtab (filename, objfile);
-  psymtab->set_text_low (textlow);
-  psymtab->set_text_high (psymtab->raw_text_low ()); /* default */
-  psymtab->globals_offset = objfile->partial_symtabs->global_psymbols.size ();
-  psymtab->statics_offset = objfile->partial_symtabs->static_psymbols.size ();
-  return psymtab;
+  set_text_low (textlow);
+  set_text_high (raw_text_low ()); /* default */
+  globals_offset = objfile->partial_symtabs->global_psymbols.size ();
+  statics_offset = objfile->partial_symtabs->static_psymbols.size ();
 }
 
 /* Perform "finishing up" operations of a partial symtab.  */
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c
index be10c4f3d5..901c13469f 100644
--- a/gdb/xcoffread.c
+++ b/gdb/xcoffread.c
@@ -2007,11 +2007,8 @@ static struct partial_symtab *
 xcoff_start_psymtab (struct objfile *objfile,
 		     const char *filename, int first_symnum)
 {
-  struct partial_symtab *result =
-    start_psymtab_common (objfile,
-			  filename,
-			  /* We fill in textlow later.  */
-			  0);
+  /* We fill in textlow later.  */
+  struct partial_symtab *result = new partial_symtab (filename, objfile, 0);
 
   result->read_symtab_private =
     XOBNEW (&objfile->objfile_obstack, struct symloc);


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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2020-01-27  9:16 [binutils-gdb] Turn start_psymtab_common into a constructor gdb-buildbot
  2020-01-27  9:13 ` Failures on Fedora-i686, branch master gdb-buildbot
@ 2020-01-27  9:46 ` gdb-buildbot
  2020-01-27 10:01 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2020-01-27  9:46 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/1894

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c3693a1d9466bc9d3abe004e66f1b56fed22ba61

Subject of commit:
        Turn start_psymtab_common into a constructor

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/all-architectures-2.exp: all passed
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=crisv32: endian=auto: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=crisv32: endian=big: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=crisv32: endian=big: print, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=crisv32: endian=big: print, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=crisv32: endian=big: print, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=crisv32: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=crisv32: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=crisv32: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=crisv32: endian=big: set endian
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky: endian=auto: print, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky: endian=auto: set architecture csky
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky: endian=auto: set endian
new FAIL: gdb.base/all-architectures-2.exp: tests: osabi=default: arch=csky: endian=auto: show endian
new FAIL: gdb.base/chng-syms.exp: continue until exit at after re-compile fails
new FAIL: gdb.base/chng-syms.exp: running to stop_here after re-compile fails
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tl-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld-ts: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-tll: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c++: types-ts-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tc-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-td: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-ti: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tf-tl: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tld-tf: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tldc: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-tll-tld: failed to compile
new UNRESOLVED: gdb.base/infcall-nested-structs.exp: l=c: types-ts-td: failed to compile
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
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: second 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-cc-with-index/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.gz>

You can 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.table.gz>


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

* Failures on Fedora-x86_64-m32, branch master
  2020-01-27  9:16 [binutils-gdb] Turn start_psymtab_common into a constructor gdb-buildbot
  2020-01-27  9:13 ` Failures on Fedora-i686, branch master gdb-buildbot
  2020-01-27  9:46 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2020-01-27 10:01 ` gdb-buildbot
  2020-01-27 10:40 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2020-01-27 10:01 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m32

Worker:
        fedora-x86-64-3

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c3693a1d9466bc9d3abe004e66f1b56fed22ba61

Subject of commit:
        Turn start_psymtab_common into a constructor

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for DoNotDump-DumpExcluded: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dump-excluded.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-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.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-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 DoNotDump-DumpExcluded: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dump-excluded.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-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
==============================================

*** Complete 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.gz>

You can 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.table.gz>


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

* Failures on Fedora-x86_64-m64, branch master
  2020-01-27  9:16 [binutils-gdb] Turn start_psymtab_common into a constructor gdb-buildbot
                   ` (2 preceding siblings ...)
  2020-01-27 10:01 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2020-01-27 10:40 ` gdb-buildbot
  2020-01-27 10:55 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2020-01-27 10:40 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/2002

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c3693a1d9466bc9d3abe004e66f1b56fed22ba61

Subject of commit:
        Turn start_psymtab_common into a constructor

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

*** Diff to previous build ***
==============================================
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
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
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-m64/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.gz>

You can 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2020-01-27  9:16 [binutils-gdb] Turn start_psymtab_common into a constructor gdb-buildbot
                   ` (3 preceding siblings ...)
  2020-01-27 10:40 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2020-01-27 10:55 ` gdb-buildbot
  2020-01-27 11:13 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2020-01-27 10:55 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/1940

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c3693a1d9466bc9d3abe004e66f1b56fed22ba61

Subject of commit:
        Turn start_psymtab_common into a constructor

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

*** 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-m32/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.gz>

You can 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2020-01-27  9:16 [binutils-gdb] Turn start_psymtab_common into a constructor gdb-buildbot
                   ` (4 preceding siblings ...)
  2020-01-27 10:55 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2020-01-27 11:13 ` gdb-buildbot
  2020-01-27 13:31 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2020-01-27 11:13 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-2

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c3693a1d9466bc9d3abe004e66f1b56fed22ba61

Subject of commit:
        Turn start_psymtab_common into a constructor

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

*** 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
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: cmd complete "b -label top -function myfunction"
PASS -> FAIL: gdb.linespec/explicit.exp: complete unique label name reversed: tab complete "b -label top -function myfunction"
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
FAIL -> UNRESOLVED: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
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-native-extended-gdbserver-m64/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.gz>

You can 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2020-01-27  9:16 [binutils-gdb] Turn start_psymtab_common into a constructor gdb-buildbot
                   ` (5 preceding siblings ...)
  2020-01-27 11:13 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2020-01-27 13:31 ` gdb-buildbot
  2020-01-27 13:31 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  2020-01-27 15:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2020-01-27 13:31 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/1941

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c3693a1d9466bc9d3abe004e66f1b56fed22ba61

Subject of commit:
        Turn start_psymtab_common into a constructor

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/gdb-caching-proc.exp: show print elements
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: 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: 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/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=0: inferior 1 exited
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
==============================================

*** Complete 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.gz>

You can 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2020-01-27  9:16 [binutils-gdb] Turn start_psymtab_common into a constructor gdb-buildbot
                   ` (6 preceding siblings ...)
  2020-01-27 13:31 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
@ 2020-01-27 13:31 ` gdb-buildbot
  2020-01-27 15:03 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2020-01-27 13:31 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m32

Worker:
        fedora-x86-64-4

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

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c3693a1d9466bc9d3abe004e66f1b56fed22ba61

Subject of commit:
        Turn start_psymtab_common into a constructor

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/gdb-caching-proc.exp: show print elements
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
==============================================

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

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

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

You can 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.table.gz>


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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2020-01-27  9:16 [binutils-gdb] Turn start_psymtab_common into a constructor gdb-buildbot
                   ` (7 preceding siblings ...)
  2020-01-27 13:31 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2020-01-27 15:03 ` gdb-buildbot
  8 siblings, 0 replies; 10+ messages in thread
From: gdb-buildbot @ 2020-01-27 15:03 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/1847

Author:
        Tom Tromey <tom@tromey.com>

Commit tested:
        c3693a1d9466bc9d3abe004e66f1b56fed22ba61

Subject of commit:
        Turn start_psymtab_common into a constructor

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
==============================================

*** Complete list of XFAILs 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.gz>

You can also see a 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/c3/c3693a1d9466bc9d3abe004e66f1b56fed22ba61//xfail.table.gz>


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

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

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-27  9:16 [binutils-gdb] Turn start_psymtab_common into a constructor gdb-buildbot
2020-01-27  9:13 ` Failures on Fedora-i686, branch master gdb-buildbot
2020-01-27  9:46 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2020-01-27 10:01 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2020-01-27 10:40 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2020-01-27 10:55 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2020-01-27 11:13 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2020-01-27 13:31 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
2020-01-27 13:31 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2020-01-27 15:03 ` Failures on Ubuntu-Aarch64-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).